From 9394e224f4348cc4a3849af7fb4e628f8d9c76f6 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 22 Aug 2005 13:03:23 +0000 Subject: [PATCH] Tweaked flight manipulator pitch sensitivity. --- src/osgGA/FlightManipulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgGA/FlightManipulator.cpp b/src/osgGA/FlightManipulator.cpp index bbdfd546f..d0b6ad208 100644 --- a/src/osgGA/FlightManipulator.cpp +++ b/src/osgGA/FlightManipulator.cpp @@ -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;