We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185eb9f commit 684d6faCopy full SHA for 684d6fa
src/wheel.d
@@ -232,7 +232,7 @@ class Wheel: Owner, NewtonRaycaster
232
}
233
234
angularVelocity += angularAcceleration * dt;
235
- if (abs(angularVelocity) > 0.5f)
+ if (abs(angularVelocity) > 0.1f)
236
{
237
float angularVelocityVisual = clamp(angularVelocity, -10.0f, 10.0f);
238
roll += angularVelocityVisual * dt;
0 commit comments