Skip to content

Commit 684d6fa

Browse files
committed
Update
1 parent 185eb9f commit 684d6fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wheel.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ class Wheel: Owner, NewtonRaycaster
232232
}
233233

234234
angularVelocity += angularAcceleration * dt;
235-
if (abs(angularVelocity) > 0.5f)
235+
if (abs(angularVelocity) > 0.1f)
236236
{
237237
float angularVelocityVisual = clamp(angularVelocity, -10.0f, 10.0f);
238238
roll += angularVelocityVisual * dt;

0 commit comments

Comments
 (0)