Changeset 1558 for code/trunk/src/orxonox/tools
- Timestamp:
- Jun 7, 2008, 2:06:41 AM (16 years ago)
- Location:
- code/trunk/src/orxonox/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/tools/BillboardSet.h
r1505 r1558 33 33 34 34 #include <string> 35 #include <OgreBillboardSet.h> 35 36 36 #include <OgreBillboardSet.h>37 37 #include "util/Math.h" 38 38 … … 52 52 { return this->billboardSet_->getName(); } 53 53 54 inline void setVisible(bool visible) 55 { this->billboardSet_->setVisible(visible); } 56 inline bool getVisible() const 57 { return this->billboardSet_->getVisible(); } 58 54 59 private: 55 60 static unsigned int billboardSetCounter_s; -
code/trunk/src/orxonox/tools/Mesh.h
r1505 r1558 51 51 { return this->entity_->getName(); } 52 52 53 inline void setVisible(bool visible) 54 { this->entity_->setVisible(visible); } 55 inline bool getVisible() const 56 { return this->entity_->getVisible(); } 57 53 58 private: 54 59 static unsigned int meshCounter_s;
Note: See TracChangeset
for help on using the changeset viewer.