Diffstat (limited to 'leveldata.gd')
| -rw-r--r-- | leveldata.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/leveldata.gd b/leveldata.gd index 6c17fd8..2f25b03 100644 --- a/leveldata.gd +++ b/leveldata.gd @@ -4,4 +4,7 @@ export(PoolColorArray) var dot_colors export(Color) var background_color func _ready(): + randomize() VisualServer.set_default_clear_color(background_color) + +export(Array, PackedScene) var dots |