2025-01-07 01:57:46 +00:00
|
|
|
extends Area2D
|
2025-02-10 16:30:11 +00:00
|
|
|
@onready var character: CharacterBody2D = $"../CharacterBody2D"
|
2025-01-07 01:57:46 +00:00
|
|
|
|
|
|
|
@export var effect = "alert"
|
|
|
|
signal areaTrigger(effect, Object)
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
|
|
|
pass # Replace with function body.
|
|
|
|
|
|
|
|
|
|
|
|
# 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("Something in the trigger.")
|
2025-02-10 16:30:11 +00:00
|
|
|
print(character.position)
|
2025-01-07 01:57:46 +00:00
|
|
|
areaTrigger.emit(effect, body)
|