Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 6:45:53 PM (16 years ago)
Author:
rgrieder
Message:
  • added font generation for the console (so that we can create the exact font size, looks sharper)
  • fixed 2 bugs with the size of an OrxonoxOverlay
  • fixed a bug with the visibility of entire OverlayGroups
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/overlays/OverlayGroup.cc

    r1628 r1633  
    116116    }
    117117
     118    //! Changes the visibility of all elements
     119    void OverlayGroup::changedVisibility()
     120    {
     121        for (std::map<std::string, OrxonoxOverlay*>::iterator it = hudElements_.begin(); it != hudElements_.end(); ++it)
     122            (*it).second->setVisible(this->isVisible());
     123    }
     124
    118125
    119126    //########### Console commands ############
Note: See TracChangeset for help on using the changeset viewer.