Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 26, 2008, 2:13:17 PM (16 years ago)
Author:
rgrieder
Message:

merged hud branch back to trunk

Location:
code/trunk/src/orxonox/overlays
Files:
24 copied

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/overlays/OrxonoxOverlay.h

    r1624 r1625  
    7676
    7777        //! Shows the overlay with an detour to BaseObject::visibility_
    78         void show() { this->setVisibility(true); }
     78        void show() { this->setVisible(true); }
    7979        //! Hides the overlay with an detour to BaseObject::visibility_
    80         void hide() { this->setVisibility(false); }
     80        void hide() { this->setVisible(false); }
    8181
    8282        /** Sets whether the aspect of the overlay is corrected.
  • code/trunk/src/orxonox/overlays/OverlayGroup.cc

    r1624 r1625  
    138138        {
    139139            if ((*it)->getName() == name)
    140                 (*it)->setVisibility(!((*it)->isVisible()));
     140                (*it)->setVisible(!((*it)->isVisible()));
    141141        }
    142142    }
  • code/trunk/src/orxonox/overlays/hud/HUDNavigation.cc

    r1624 r1625  
    9797
    9898            // hide at first
    99             this->setVisibility(false);
     99            this->setVisible(false);
    100100        }
    101101
Note: See TracChangeset for help on using the changeset viewer.