]> git.mxchange.org Git - flightgear.git/commitdiff
Make the inclinometer a little more lively.
authordavid <david>
Tue, 1 Jul 2003 21:22:01 +0000 (21:22 +0000)
committerdavid <david>
Tue, 1 Jul 2003 21:22:01 +0000 (21:22 +0000)
src/Instrumentation/slip_skid_ball.cxx

index 3a1a4604ba946d9964019b78b95d3f0c521e1733..3d2c8c4758e77f01bb333774b63dbd5378ca61e5 100644 (file)
@@ -34,7 +34,7 @@ SlipSkidBall::update (double delta_time_sec)
         double d = -_z_accel_node->getDoubleValue();
         if (d < 1.0)
             d = 1.0;
-        double pos = _y_accel_node->getDoubleValue() / d * 5.0;
+        double pos = _y_accel_node->getDoubleValue() / d * 10.0;
         pos = fgGetLowPass(_out_node->getDoubleValue(), pos, delta_time_sec);
         _out_node->setDoubleValue(pos);
     }