From fd84431d364ebe20210c509697018c8e77fa4314 Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Fri, 11 Mar 2005 06:10:07 +0000 Subject: [PATCH] Added UFO Manipulator to Viewer --- src/osgProducer/Viewer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osgProducer/Viewer.cpp b/src/osgProducer/Viewer.cpp index 26033ff10..1e40aa6c6 100644 --- a/src/osgProducer/Viewer.cpp +++ b/src/osgProducer/Viewer.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -491,6 +492,7 @@ void Viewer::setUpViewer(unsigned int options) if (options&FLIGHT_MANIPULATOR) addCameraManipulator(new osgGA::FlightManipulator); if (options&DRIVE_MANIPULATOR) addCameraManipulator(new osgGA::DriveManipulator); if (options&TERRAIN_MANIPULATOR) addCameraManipulator(new osgGA::TerrainManipulator); + if (options&UFO_MANIPULATOR) addCameraManipulator(new osgGA::UFOManipulator); if (options&STATE_MANIPULATOR) {