Platformer 2.0

This commit is contained in:
2026-07-07 19:03:53 -07:00
commit db83628775
23 changed files with 323 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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()