Fixed the drive manipulator so its height is now 1.5m and the buffer size if

2.0m.
This commit is contained in:
Robert Osfield
2003-04-05 07:11:07 +00:00
parent 169bf25f77
commit c6e3cb044b

View File

@@ -13,8 +13,8 @@ DriveManipulator::DriveManipulator()
{
_modelScale = 0.01f;
_velocity = 0.0f;
_height = 1.0f;
_buffer = 1.0f;
_height = 1.5f;
_buffer = 2.0f;
//_speedMode = USE_MOUSE_Y_FOR_SPEED;
_speedMode = USE_MOUSE_BUTTONS_FOR_SPEED;
}
@@ -32,8 +32,11 @@ void DriveManipulator::setNode(osg::Node* node)
{
const osg::BoundingSphere& boundingSphere=_node->getBound();
_modelScale = boundingSphere._radius;
_height = sqrtf(_modelScale)*0.03f;
_buffer = sqrtf(_modelScale)*0.05f;
//_height = sqrtf(_modelScale)*0.03f;
//_buffer = sqrtf(_modelScale)*0.05f;
_height = 1.5f;
_buffer = 2.0f;
}
}