diff --git a/engine.cfg b/engine.cfg index b53eca2..5f58ed5 100644 --- a/engine.cfg +++ b/engine.cfg @@ -2,6 +2,7 @@ name="Monster Hunter Pocket" main_scene="res://scenes/Manager.tscn" +disable_stdout=true boot_splash="res://misc/background.png" icon="res://icon.png" auto_accept_quit=true diff --git a/scenes/Splash.tscn b/scenes/Splash.tscn index 4cb88b6..105b31b 100644 --- a/scenes/Splash.tscn +++ b/scenes/Splash.tscn @@ -226,8 +226,6 @@ autostart = false [connection signal="finished" from="Nyan/Sprite/AnimationPlayer" to="." method="_on_AnimationPlayer_finished"] -[connection signal="finished" from="Instrunctions/Sprite/AnimationPlayer" to="." method="_on_Fade2_AnimationPlayer_finished"] - [connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"] [connection signal="timeout" from="Readme" to="." method="_on_Readme_timeout"] diff --git a/scripts/manager.gd b/scripts/manager.gd index 8274088..458cc03 100644 --- a/scripts/manager.gd +++ b/scripts/manager.gd @@ -2,10 +2,10 @@ extends Node func _ready(): print("Initializing!") - Globals.set("start_game", true) - if not Globals.has("max_score"): - Globals.set("max_score", 0) - Globals.save() + # Globals.set("start_game", true) + # if not Globals.has("max_score"): + # Globals.set("max_score", 0) + # Globals.save() func _on_Timer_timeout(): get_tree().change_scene("res://scenes/Disclaimer.tscn")