summaryrefslogtreecommitdiff
path: root/Characters/Character.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Characters/Character.gd')
-rw-r--r--Characters/Character.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/Characters/Character.gd b/Characters/Character.gd
index 966d69d..e5623b1 100644
--- a/Characters/Character.gd
+++ b/Characters/Character.gd
@@ -35,6 +35,9 @@ func _physics_process(_delta):
$Sprite.play("idle")
+ velocity = move_and_slide(velocity, Vector2.UP)
+
+
# jump and fall animation
if not is_on_floor():
$Sprite.play("jump")
@@ -83,9 +86,6 @@ func _physics_process(_delta):
$Sprite.flip_h = true
- velocity = move_and_slide(velocity, Vector2.UP)
-
-
# stop
velocity.x = lerp(velocity.x, 0, 0.7)