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

9 lines
186 B
GDScript

extends State
func enter(char: Object) -> void:
char.play_animation("fall")
func process(char: Object, delta: float) -> void:
char.velocity.y += 900.0 * delta
char.move_and_slide()