diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 15:51:49 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 17:27:31 -0600 |
commit | 9961be9780edb82021e91d3b1ab75936ccec3c9c (patch) | |
tree | 04e860241d6d40edefa627b4b940174e385eaa12 /scenes/main.gd | |
parent | 4e7da00304de8bda55f7499186a51154241fa6f3 (diff) |
Move the main window under Clipette's text box
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index c984f43..1d9c503 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -6,6 +6,8 @@ var net_worth: Big func _ready() -> void: _on_microgame_spawn_timer_timeout() net_worth = Big.new(1000) + + get_window().position = Vector2(450, 360) # Called every frame. 'delta' is the elapsed time since the previous frame. |