Work on vfx and sfx for traps.

This commit is contained in:
2025-12-28 08:59:19 -05:00
parent 55eb37ca74
commit e632e54cba
67 changed files with 1312 additions and 15 deletions

11
scripts/trap_fx.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node3D
@onready var anim_player : AnimationPlayer = $AnimationPlayer
func _ready() -> void:
anim_player.play("default")
func _on_timer_timeout() -> void:
print("Done")
queue_free()