17 lines
385 B
GDScript3
17 lines
385 B
GDScript3
|
extends Area2D
|
||
|
|
||
|
signal areatrigger(Object)
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready() -> void:
|
||
|
print("Trigger is here")
|
||
|
|
||
|
|
||
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||
|
func _process(delta: float) -> void:
|
||
|
pass
|
||
|
|
||
|
|
||
|
func _on_body_entered(body: Node2D) -> void:
|
||
|
print("Body Collision in trigger")
|
||
|
areatrigger.emit(body)
|