18 lines
452 B
GDScript
18 lines
452 B
GDScript
extends LimboState
|
|
|
|
## Idle state.
|
|
|
|
@export var animation_player: AnimationPlayer
|
|
@export var animation: StringName
|
|
|
|
|
|
func _enter() -> void:
|
|
animation_player.play(animation, 0.1)
|
|
|
|
|
|
func _update(_delta: float) -> void:
|
|
var horizontal_move: float = Input.get_axis(&"move_left", &"move_right")
|
|
var vertical_move: float = Input.get_axis(&"move_up", &"move_down")
|
|
if horizontal_move != 0.0 or vertical_move != 0.0:
|
|
get_root().dispatch(EVENT_FINISHED)
|