Files
2026-07-07 19:03:53 -07:00

9 lines
175 B
GDScript

extends State
func enter(char: Object) -> void:
char.play_animation("idle")
char.velocity.x = 0.0
func process(char: Object, delta: float) -> void:
char.move_and_slide()