diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:42:00 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:42:00 -0700 |
| commit | d558a9add0e183219a7a9ff482807bdcd677e21a (patch) | |
| tree | 49e454649a4b45ce02c419894109de55f7f2e465 /scripts/Globals.gd | |
Initialize repo from local files
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) |
