diff options
Diffstat (limited to 'scripts/Globals.gd')
| -rw-r--r-- | scripts/Globals.gd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/Globals.gd b/scripts/Globals.gd new file mode 100644 index 0000000..18f3d19 --- /dev/null +++ b/scripts/Globals.gd @@ -0,0 +1,7 @@ +extends Node + +# Y R B G W Cy Pk O P dG +const colors = [ Color(1, 1, 0), Color(1, 0, 0), Color(0.3, 0.3, 1), Color(0, 0.8, 0), Color(1, 1, 1), Color(0, 1, 1), Color(1, .35, 1), Color(1, 0.4, 0), Color(0.38, 0, 0.38), Color(0, 0.4, 0) ] + +func _ready(): + set_process(false) |
