Changeset 6524 in orxonox.OLD for branches/network/src/story_entities
- Timestamp:
- Jan 18, 2006, 3:27:12 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/simple_game_menu.cc
r6521 r6524 33 33 34 34 #include "event_handler.h" 35 #include "graphics_engine.h" 35 36 36 37 #include "cd_engine.h" … … 104 105 105 106 this->dataTank->localCamera->setRelCoor(this->cameraVector); 106 } 107 108 107 108 GraphicsEngine::getInstance()->displayFPS(false); 109 } 110 111 112 /** 113 * load the data 114 */ 109 115 ErrorMessage SimpleGameMenu::loadData() 110 116 { … … 148 154 149 155 156 /** 157 * start the menu 158 */ 150 159 bool SimpleGameMenu::start() 151 160 { … … 158 167 159 168 169 /** 170 * stop the menu 171 */ 160 172 bool SimpleGameMenu::stop() 161 173 { … … 192 204 void SimpleGameMenu::animateScene(float dt) 193 205 { 194 Quaternion q( 0.00005*dt, Vector(0.0, 1.0, 0.0));206 Quaternion q(/*0.00005*/ 0.0001* dt, Vector(0.0, 1.0, 0.0)); 195 207 this->cameraVector = q.apply(this->cameraVector); 196 208 this->dataTank->localCamera->setRelCoor(this->cameraVector);
Note: See TracChangeset
for help on using the changeset viewer.