Changeset 4257 in orxonox.OLD for orxonox/branches/levelLoader/src/world_entities
- Timestamp:
- May 22, 2005, 2:39:59 AM (20 years ago)
- Location:
- orxonox/branches/levelLoader/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelLoader/src/world_entities/skybox.cc
r4255 r4257 56 56 void SkyBox::loadParams(const TiXmlElement* root) 57 57 { 58 LoadParam<SkyBox>(root, "Materialset", this, &SkyBox::setTexture).describe("Sets the material on the skysphere. The string must be the path relative to the data-dir, and without a trailing .jpg");58 LoadParam<SkyBox>(root, "Materialset", this, &SkyBox::setTexture).describe("Sets the material on the SkyBox. The string must be the path relative to the data-dir, and without a trailing .jpg"); 59 59 } 60 60 -
orxonox/branches/levelLoader/src/world_entities/world_entity.cc
r4253 r4257 42 42 { 43 43 // name setup 44 LoadParam<WorldEntity>(root, "name", this, &WorldEntity::setName) ;44 LoadParam<WorldEntity>(root, "name", this, &WorldEntity::setName).describe("the name of the Object at hand"); 45 45 46 46 // Model Loading 47 LoadParam<WorldEntity>(root, "model", this, &WorldEntity::loadModel) ;47 LoadParam<WorldEntity>(root, "model", this, &WorldEntity::loadModel).describe("the fileName of the model, that should be loaded onto this world-entity. (must be relative to the data-dir)") ; 48 48 } 49 49
Note: See TracChangeset
for help on using the changeset viewer.