Ajout des mutations Sauveteuse, Adaptative et résistante, ajout des crédits du jeu et d'un splash screen (+ un peu de debug)

This commit is contained in:
2026-07-10 14:34:27 +02:00
parent 22b753c6a9
commit 3caab11468
34 changed files with 729 additions and 158 deletions
+16 -1
View File
@@ -1,4 +1,19 @@
extends Node
var game_loaded := false
func _ready():
SceneManager.change_to_scene(TitleScene.new(), false)
%SplashScreenAnimationPlayer.play("SplashScreen")
await %SplashScreenAnimationPlayer.animation_finished
load_game()
func _input(event):
if event is InputEventKey or event is InputEventJoypadButton or event is InputEventMouseButton:
load_game()
func load_game():
if not game_loaded:
game_loaded = true
SceneManager.change_to_scene(TitleScene.new(), false)