Tweaked flight manipulator pitch sensitivity.

This commit is contained in:
Robert Osfield
2005-08-22 13:03:23 +00:00
parent 29958a5612
commit 9394e224f4

View File

@@ -264,7 +264,7 @@ bool FlightManipulator::calcMovement()
osg::Vec3d sv = lv^up;
sv.normalize();
double pitch = -inDegrees(dy*75.0f*dt);
double pitch = -inDegrees(dy*50.0f*dt);
double roll = inDegrees(dx*50.0f*dt);
osg::Quat delta_rotate;