Final Hours Push I

- Fixed bug with the win screen
- Added new colors and font for the player

Co-Authored-By: deranonymos <deranonymos@users.noreply.github.com>
Co-Authored-By: Lukas Goppold <streamfire@users.noreply.github.com>
This commit is contained in:
2020-04-21 02:08:30 +02:00
parent 3351eee3cd
commit 568a896b8e
8 changed files with 46 additions and 37 deletions

View File

@@ -3,8 +3,11 @@ extends Node2D
export(String, FILE, "*.tscn,*.scn") var restart_scene = ""
export(String, FILE, "*.tscn,*.scn") var title_screen = ""
func _on_Restart_pressed():
get_tree().change_scene(restart_scene)
SoundControler.pub_stop_effects()
func _on_TitleScreen_pressed():
get_tree().change_scene(title_screen)
SoundControler.pub_stop_effects()