Skip to content

Commit

Permalink
Removes a debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
BirDt committed Jan 21, 2024
1 parent c0a2cab commit 4adbe8a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions addons/bhop3d/src/bhop3d.gd
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ func get_next_velocity(previousVelocity, delta):
var max_vel = max_ground_velocity if grounded else max_air_velocity
var accel = ground_accelerate if grounded else air_accelerate

print(grounded, frame_timer, bhop_frames)

# Apply friction if player is grounded, and if the frame_timer indicates it should be applied
if grounded and (frame_timer >= bhop_frames):
var speed = previousVelocity.length()
Expand Down

0 comments on commit 4adbe8a

Please sign in to comment.