Changeset 1625 for code/trunk/src/orxonox/overlays
- Timestamp:
- Jun 26, 2008, 2:13:17 PM (17 years ago)
- Location:
- code/trunk/src/orxonox/overlays
- Files:
-
- 24 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/overlays/OrxonoxOverlay.h
r1624 r1625 76 76 77 77 //! Shows the overlay with an detour to BaseObject::visibility_ 78 void show() { this->setVisib ility(true); }78 void show() { this->setVisible(true); } 79 79 //! Hides the overlay with an detour to BaseObject::visibility_ 80 void hide() { this->setVisib ility(false); }80 void hide() { this->setVisible(false); } 81 81 82 82 /** Sets whether the aspect of the overlay is corrected. -
code/trunk/src/orxonox/overlays/OverlayGroup.cc
r1624 r1625 138 138 { 139 139 if ((*it)->getName() == name) 140 (*it)->setVisib ility(!((*it)->isVisible()));140 (*it)->setVisible(!((*it)->isVisible())); 141 141 } 142 142 } -
code/trunk/src/orxonox/overlays/hud/HUDNavigation.cc
r1624 r1625 97 97 98 98 // hide at first 99 this->setVisib ility(false);99 this->setVisible(false); 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.