feat: initial commit

This commit is contained in:
installer
2025-01-22 17:54:21 +01:00
commit 288f889130
69 changed files with 1525 additions and 0 deletions

11
scenes/game_over.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node2D
@export var scene: PackedScene
func _ready():
$CanvasLayer/VBoxContainer/Score.text += str(Global.score);
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta: float) -> void:
if Input.is_action_just_pressed("continue"):
get_tree().change_scene_to_packed(scene)