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

View File

@@ -59,6 +59,10 @@ func is_valid_trap_square(crd : Vector3i) -> bool:
return false
return true
func activate_trap(crd : Vector3i) -> void:
var trap = traps[crd]
#if trap:
func generate_trap(type : Trap.Type, square : Vector3i):
var trap = trap_template.instantiate()