Changeset 4444 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Jun 1, 2005, 10:17:14 PM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/camera.cc
r4420 r4444 229 229 { 230 230 this->setClassID(CL_CAMERA_TARGET, "CameraTarget"); 231 this->set Mode(PNODE_MOVEMENT);231 this->setParentMode(PNODE_MOVEMENT); 232 232 } 233 233 -
orxonox/trunk/src/world_entities/skybox.cc
r4436 r4444 45 45 } 46 46 47 /** 48 \brief initializes a skybox from a XmlElement 49 */ 47 50 SkyBox::SkyBox(const TiXmlElement* root) 48 51 { … … 75 78 this->material[i]->setAmbient(2.0, 2.0, 2.0); 76 79 } 77 this->set Mode(PNODE_MOVEMENT);80 this->setParentMode(PNODE_MOVEMENT); 78 81 } 79 82 -
orxonox/trunk/src/world_entities/skysphere.cc
r4094 r4444 68 68 PRINTF(1)("initializing the Skysphere with Material %s.\n", fileName); 69 69 this->sphereObj = gluNewQuadric(); 70 this->set Mode(PNODE_MOVEMENT);70 this->setParentMode(PNODE_MOVEMENT); 71 71 72 72 gluQuadricTexture(this->sphereObj, GL_TRUE);
Note: See TracChangeset
for help on using the changeset viewer.