Made the drive and flight manipulators more sensitive to de/acceleration
This commit is contained in:
parent
9236f6daa8
commit
205a6a105e
@ -434,7 +434,7 @@ bool DriveManipulator::calcMovement()
|
||||
{
|
||||
// pan model.
|
||||
|
||||
_velocity += dt*_modelScale*0.02;
|
||||
_velocity += dt*_modelScale*0.01;
|
||||
|
||||
}
|
||||
else if (buttonMask==GUIEventAdapter::MIDDLE_MOUSE_BUTTON ||
|
||||
@ -447,7 +447,7 @@ bool DriveManipulator::calcMovement()
|
||||
else if (buttonMask==GUIEventAdapter::RIGHT_MOUSE_BUTTON)
|
||||
{
|
||||
|
||||
_velocity -= dt*_modelScale*0.02;
|
||||
_velocity -= dt*_modelScale*0.01;
|
||||
|
||||
}
|
||||
break;
|
||||
|
@ -237,7 +237,7 @@ bool FlightManipulator::calcMovement()
|
||||
{
|
||||
// pan model.
|
||||
|
||||
_velocity += dt*_modelScale*0.05f;
|
||||
_velocity += dt*_modelScale*0.02f;
|
||||
|
||||
}
|
||||
else if (buttonMask==GUIEventAdapter::MIDDLE_MOUSE_BUTTON ||
|
||||
@ -250,7 +250,7 @@ bool FlightManipulator::calcMovement()
|
||||
else if (buttonMask==GUIEventAdapter::RIGHT_MOUSE_BUTTON)
|
||||
{
|
||||
|
||||
_velocity -= dt*_modelScale*0.05f;
|
||||
_velocity -= dt*_modelScale*0.02f;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user