summaryrefslogtreecommitdiff
path: root/scenes/main.gd
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-16 15:58:14 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-16 16:47:03 -0600
commit605873fa388a9b092baa495c3c8bbfee3902719c (patch)
tree5bef289343666dd60a2cc5fa99b22b972e017e63 /scenes/main.gd
parent68bfe8975892971b8e61843c521ffac693608540 (diff)
Resize main window
Diffstat (limited to 'scenes/main.gd')
-rw-r--r--scenes/main.gd5
1 files changed, 3 insertions, 2 deletions
diff --git a/scenes/main.gd b/scenes/main.gd
index 1d9c503..b20524b 100644
--- a/scenes/main.gd
+++ b/scenes/main.gd
@@ -7,8 +7,9 @@ func _ready() -> void:
_on_microgame_spawn_timer_timeout()
net_worth = Big.new(1000)
- get_window().position = Vector2(450, 360)
-
+ var window = get_window()
+ window.position = Vector2(450, 360)
+ window.size = Vector2(500, 300)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void: