generated from SGDA/GodotExampleProject
14 lines
311 B
GDScript3
14 lines
311 B
GDScript3
|
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
|