소스 검색

陀螺仪白噪声

yichael 4 년 전
부모
커밋
62d3bb0374
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Assets/BowArrow/Scripts/Bluetooth/o09Axis.cs

+ 1 - 1
Assets/BowArrow/Scripts/Bluetooth/o09Axis.cs

@@ -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;
     }