Make skidding happen less often.

This commit is contained in:
blujai831 2025-03-30 17:16:32 -07:00
parent 6287e74ba5
commit 3b0b3bbaf4
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 1 additions and 1 deletions

View File

@ -1135,7 +1135,7 @@ func _on_sprint_state_tick(delta: float) -> void:
soft_force_change_state(&'jump')
elif top_speed_proximity < 0.375:
state = &'run'
elif _get_effective_impetus().dot(linear_velocity) <= -0.75:
elif _get_effective_impetus().dot(linear_velocity) <= -0.96875:
state = &'skid'
func _on_jump_state_start() -> void: