diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 15:58:14 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 15:58:14 -0600 |
commit | f3efe1b3c71667c3a2d83b39f97d5d10bf580521 (patch) | |
tree | 16117f7c5cf82e5679f0d01d38cc21debd04a6e6 /scenes/main.gd | |
parent | ec5c89a7663bfd81743e951eb4f2def146ed47be (diff) |
Resize main window
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 5 |
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: |