First full commit version. Original Files

This commit is contained in:
2026-06-02 09:12:22 -07:00
parent ca54d7073f
commit 80979dff66
824 changed files with 20587 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
extends Area2D
@onready var kitty_boo = get_node("../kitty_boo")
func _on_body_entered(body):
if (body.name == "kitty_boo"):
#game_manager.confirm_box()
kitty_boo.call_deferred("free")
$AnimatedSprite2D.play("default")
$"../level_5_theme".stop()
$"../box_player_end".play()
$"/root/Global".StarTotal += $"../GameMgr".points
print(str("Total Points: ",$"/root/Global".StarTotal))
await get_tree().create_timer(11.0).timeout
get_tree().change_scene_to_file("res://scenes/5-e.tscn")