removed print

This commit is contained in:
pennyrigate 2023-08-22 23:00:21 -04:00
parent 4c888d5413
commit c3b6ef3467

View file

@ -166,7 +166,6 @@ func _on_Grounded_state_entered() -> void:
snap.y = 2.5 # snap when in grounded state snap.y = 2.5 # snap when in grounded state
var intensity = inverse_lerp(0.0, max_fall_speed, current_fall_speed) var intensity = inverse_lerp(0.0, max_fall_speed, current_fall_speed)
intensity = min(intensity * 1.1,1.0) intensity = min(intensity * 1.1,1.0)
print(intensity)
Input.start_joy_vibration(0, 1.0, intensity, 0.05) Input.start_joy_vibration(0, 1.0, intensity, 0.05)
velocity.y = 1.0 velocity.y = 1.0