diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 19:38:06 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 19:38:06 -0600 |
commit | a472a321179268710722232ee61aa04b369c627c (patch) | |
tree | 720d7c078713c73126d0b20575c2d2a4f4facd2a /scenes/main.gd | |
parent | 162f6ba656c3ed050526df7e0aa31d8e284b640c (diff) |
Make the fishing minigame transition into stonks
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index 6949a8c..5349cf4 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -35,3 +35,8 @@ func _on_microgame_spawn_timer_timeout() -> void: func _on_microgame_win(window: MicrogameWindow): print("yay") + + +func _on_fishin_win() -> void: + $Fishin.visible = false + $"Stock ticker".start() |