mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Default color setting matches default RGB values
For color (hue) in range 0-100, to get RGB (0, 0, 1), we need to use 100 * 2/3 = 66.66
This commit is contained in:
parent
240c48ad0c
commit
a32f7a6402
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class Scratch3PenBlocks {
|
|||
static get DEFAULT_PEN_STATE () {
|
||||
return {
|
||||
penDown: false,
|
||||
color: 33,
|
||||
color: 66.66,
|
||||
saturation: 100,
|
||||
brightness: 100,
|
||||
transparency: 0,
|
||||
|
|
Loading…
Reference in a new issue