Files
EGJ25/scenes/main.gd

18 lines
389 B
GDScript3
Raw Normal View History

2025-06-28 10:23:35 +02:00
extends Node2D
@export var base_mode: GUIDEMappingContext
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
GUIDE.enable_mapping_context(base_mode)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _on_door_event_triggered(event_id: String) -> void:
print(event_id)