Files
2025-07-20 10:34:21 +02:00

8 lines
158 B
GDScript

extends LimboState
@export var animation_player: AnimationPlayer
@export var animation: StringName
func _enter() -> void:
animation_player.play(animation)