first commit

This commit is contained in:
Ugric
2026-03-02 02:17:04 +00:00
commit 5d56860f3a
813 changed files with 41799 additions and 0 deletions

18
heart.gd Normal file
View File

@@ -0,0 +1,18 @@
extends Node3D
func _on_area_3d_body_entered(body):
if visible && body.is_in_group("player"):
Globals.task = 2
if Globals.huntMode != 1:
Globals.huntMode = 0
func _process(_delta):
visible = Globals.task == 1
func _on_visibility_changed():
if visible:
$heart.play()
else:
$heart.stop()