TowerGameProto/scripts/watchtower.gd

10 lines
211 B
GDScript3
Raw Normal View History

2025-04-16 22:56:14 +01:00
extends Building
func place() -> void:
super()
$DetectionArea.active_state = DetectionArea.ActiveState.PREVIEW
func build() -> void:
super()
$DetectionArea.active_state = DetectionArea.ActiveState.ACTIVE