Skip to content

Commit c21c97d

Browse files
committed
DO NOT MERGE: Enable special abilities
1 parent ccd8a34 commit c21c97d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/player.gd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func _physics_process(delta):
163163
if Global.lives <= 0:
164164
return
165165

166-
# _phase()
166+
_phase()
167167

168168
# Handle jump
169169
if is_on_floor():
@@ -196,7 +196,7 @@ func _physics_process(delta):
196196
else:
197197
velocity.x = move_toward(velocity.x, 0, acceleration * delta)
198198

199-
# _glide()
199+
_glide()
200200

201201
if velocity == Vector2.ZERO:
202202
_sprite.play("idle")
@@ -212,7 +212,7 @@ func _physics_process(delta):
212212

213213
move_and_slide()
214214

215-
# _teleport(direction)
215+
_teleport(direction)
216216

217217
coyote_timer -= delta
218218
jump_buffer_timer -= delta

0 commit comments

Comments
 (0)