Changeset 2152 for code/branches/overlay/src
- Timestamp:
- Nov 6, 2008, 2:59:24 PM (16 years ago)
- Location:
- code/branches/overlay/src/orxonox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/overlay/src/orxonox/CMakeLists.txt
r2106 r2152 35 35 overlays/hud/HUDSpeedBar.cc 36 36 overlays/hud/ChatOverlay.cc 37 38 overlays/stats/Stats.cc 39 overlays/stats/StatsTest.cc 37 40 38 41 tools/BillboardSet.cc -
code/branches/overlay/src/orxonox/overlays/stats/Stats.cc
r2140 r2152 59 59 60 60 /** 61 @brief Sets the config values, describing the size of the stats panel.61 @brief Sets the config values, describing the size of the Stats panel. 62 62 */ 63 63 void Stats::setConfigValues() … … 79 79 this->statsOverlayBorder_ = static_cast<Ogre::BorderPanelOverlayElement*>(ovMan->createOverlayElement("BorderPanel", "StatsBorderPanel")); 80 80 this->statsOverlayBorder_->setMaterialName("StatsCenter"); 81 this->statsOverlayBorder_->setBorderSize(0.0 5, 0.05, 0.05, 0.05);81 this->statsOverlayBorder_->setBorderSize(0.02, 0.02, 0.02, 0.02); 82 82 this->statsOverlayBorder_->setBorderMaterialName("StatsBorder"); 83 83 this->statsOverlayBorder_->setTopBorderUV(0.49, 0.0, 0.51, 0.5); … … 94 94 // create noise 95 95 this->statsOverlayNoise_ = static_cast<Ogre::PanelOverlayElement*>(ovMan->createOverlayElement("Panel", "StatsNoise")); 96 this->statsOverlayNoise_->setPosition(0 .02,0);96 this->statsOverlayNoise_->setPosition(0,0); 97 97 this->statsOverlayNoise_->setMaterialName("StatsNoiseSmall"); 98 98 // comment following line to disable noise
Note: See TracChangeset
for help on using the changeset viewer.