JanuaryGame/GodotProject/scripts/Trigger.gd

10 lines
166 B
GDScript3
Raw Permalink Normal View History

extends Area2D
signal alert
func _on_body_entered(body):
print("Trigger detected object")
if body.is_in_group("box"):
print("this is a box")
alert.emit(body)