Changeset 4836 in orxonox.OLD for orxonox/trunk/src/world_entities/skybox.cc
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/skybox.cc
r4746 r4836 34 34 35 35 /** 36 \briefConstructs a SkyBox and takes fileName as a map.37 \param fileName the file to take as input for the SkyBox36 * Constructs a SkyBox and takes fileName as a map. 37 * @param fileName the file to take as input for the SkyBox 38 38 */ 39 39 SkyBox::SkyBox(const char* fileName) … … 46 46 47 47 /** 48 \briefinitializes a skybox from a XmlElement48 * initializes a skybox from a XmlElement 49 49 */ 50 50 SkyBox::SkyBox(const TiXmlElement* root) … … 93 93 94 94 /** 95 \briefdefault destructor95 * default destructor 96 96 */ 97 97 SkyBox::~SkyBox() … … 104 104 105 105 /** 106 \briefsets A set of textures when just giving a Name and an extension:106 * sets A set of textures when just giving a Name and an extension: 107 107 108 108 usage: give this function an argument like … … 140 140 141 141 /** 142 \briefDefines which textures should be loaded onto the SkyBox.143 \param top the top texture.144 \param bottom the bottom texture.145 \param left the left texture.146 \param right the right texture.147 \param front the front texture.148 \param back the back texture.142 * Defines which textures should be loaded onto the SkyBox. 143 * @param top the top texture. 144 * @param bottom the bottom texture. 145 * @param left the left texture. 146 * @param right the right texture. 147 * @param front the front texture. 148 * @param back the back texture. 149 149 */ 150 150 void SkyBox::setTextures(const char* top, const char* bottom, const char* left, const char* right, const char* front, const char* back) … … 159 159 160 160 /** 161 \param size The new size of the SkyBox161 * @param size The new size of the SkyBox 162 162 163 163 * do not forget to rebuild the SkyBox after this. … … 169 169 170 170 /** 171 \briefdraws the SkyBox171 * draws the SkyBox 172 172 */ 173 173 void SkyBox::draw() … … 185 185 186 186 /** 187 \briefrebuilds the SkyBox187 * rebuilds the SkyBox 188 188 189 189 this must be done, when changing the Size of the Skybox (runtime-efficency)
Note: See TracChangeset
for help on using the changeset viewer.