GodotCourse/week1/GodotSpeedRun/scripts/Trigger.gd

14 lines
437 B
GDScript3
Raw Normal View History

2024-07-15 17:09:25 +00:00
extends Area2D
2025-02-24 19:16:36 +00:00
#an @export is a nice way to expose a variable in the IDE
#this could be handy when working in a team, working with others
2024-07-15 17:09:25 +00:00
@export var effect = "alert"
2025-02-24 19:16:36 +00:00
#a custom signal is a way for one object to communicate to another
#other objects must assign a handler function to hear about the custom signal
2024-07-15 17:09:25 +00:00
signal areatrigger(effect, Object)
func _on_body_entered(body):
print("detected a body")
areatrigger.emit(effect, body)