Changeset 2361 for code/branches/objecthierarchy2/src/orxonox/overlays
- Timestamp:
- Dec 9, 2008, 2:07:24 AM (16 years ago)
- Location:
- code/branches/objecthierarchy2/src/orxonox/overlays
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy2/src/orxonox/overlays/debug/DebugFPSText.cc
r2087 r2361 49 49 void DebugFPSText::tick(float dt) 50 50 { 51 SUPER(DebugFPSText, tick, dt); 52 51 53 float fps = GraphicsEngine::getInstance().getAverageFramesPerSecond(); 52 54 this->setCaption(convertToString(fps)); -
code/branches/objecthierarchy2/src/orxonox/overlays/debug/DebugRTRText.cc
r2087 r2361 49 49 void DebugRTRText::tick(float dt) 50 50 { 51 SUPER(DebugRTRText, tick, dt); 52 51 53 float rtr = GraphicsEngine::getInstance().getAverageTickTime(); 52 54 this->setCaption(convertToString(rtr)); -
code/branches/objecthierarchy2/src/orxonox/overlays/hud/HUDNavigation.cc
r2087 r2361 129 129 void HUDNavigation::tick(float dt) 130 130 { 131 SUPER(HUDNavigation, tick, dt); 132 131 133 if (!Radar::getInstance().getFocus()) 132 134 { -
code/branches/objecthierarchy2/src/orxonox/overlays/hud/HUDSpeedBar.cc
r2256 r2361 52 52 void HUDSpeedBar::tick(float dt) 53 53 { 54 SUPER(HUDSpeedBar, tick, dt); 55 54 56 if (this->owner_ && this->owner_->getEngine()) 55 57 {
Note: See TracChangeset
for help on using the changeset viewer.