This commit is contained in:
Gerard Gascón 2025-04-24 17:23:34 +02:00
commit b99855351d
434 changed files with 50357 additions and 0 deletions

9
scripts/main_menu.gd Normal file
View file

@ -0,0 +1,9 @@
extends Control
@export var player: CharacterBody3D
@export var eyes: Node2D
func _on_button_button_down():
player.enable()
eyes.enable()
queue_free()