diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:10:46 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:10:46 -0600 |
commit | a0e3df5b4c0638667e72ff5e2b6071e0d62148cf (patch) | |
tree | c31f5b3dfe46bc59ca4171ad217c619274b9c9cb /scenes/title.gd | |
parent | 2060290b523646636bc3d46416c7fcc30311ed94 (diff) | |
parent | cd2144e9bb8320285a1e374588621a1d2ccefb57 (diff) |
Merge branch 'main' into fully_generalized_fish
Diffstat (limited to 'scenes/title.gd')
-rw-r--r-- | scenes/title.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scenes/title.gd b/scenes/title.gd index d5c2159..afb1b34 100644 --- a/scenes/title.gd +++ b/scenes/title.gd @@ -23,6 +23,8 @@ func _on_minimize_button_up() -> void: func _on_start_pressed() -> void: #get_window().size = Vector2(0,0) This messes up the text for some godforesaken reason get_window().position = Vector2(-1000,-1000) + var audio = $AudioStreamPlayer + audio.stop() var new_window = Window.new() new_window.size = Vector2i(1280, 720) |