@@ -648,7 +648,7 @@ public class o0GyrCalibrater
if (Calibration)
_Average += (v - _Average) / ++Count;
v -= _Average;
- if (v.magnitude < 0.0002)
+ if (v.magnitude < 0.0003)
return Vector3.zero;
return v;
}