Changeset 6052 for OpenSceneGraph/trunk/examples/osganimate/osganimate.cpp
- Timestamp:
- 01/25/07 13:16:38 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osganimate/osganimate.cpp
r6051 r6052 236 236 viewer.setCameraManipulator(new osgGA::TrackballManipulator()); 237 237 238 #if 0 239 240 // use of custom simulation time. 241 238 242 viewer.realize(); 239 243 240 244 double simulationTime = 100.0; 241 245 … … 245 249 simulationTime -= 0.01; 246 250 } 247 } 251 252 return 0; 253 #else 254 255 // normal viewer usage. 256 257 return viewer.run(); 258 259 #endif 260 }
