Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4444 in orxonox.OLD for orxonox/trunk/src/world_entities


Ignore:
Timestamp:
Jun 1, 2005, 10:17:14 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: setMode → setParentMode

Location:
orxonox/trunk/src/world_entities
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/world_entities/camera.cc

    r4420 r4444  
    229229{
    230230  this->setClassID(CL_CAMERA_TARGET, "CameraTarget");
    231   this->setMode(PNODE_MOVEMENT);
     231  this->setParentMode(PNODE_MOVEMENT);
    232232}
    233233
  • orxonox/trunk/src/world_entities/skybox.cc

    r4436 r4444  
    4545}
    4646
     47/**
     48   \brief initializes a skybox from a XmlElement
     49*/
    4750SkyBox::SkyBox(const TiXmlElement* root)
    4851{
     
    7578      this->material[i]->setAmbient(2.0, 2.0, 2.0);
    7679    }
    77   this->setMode(PNODE_MOVEMENT);
     80  this->setParentMode(PNODE_MOVEMENT);
    7881}
    7982
  • orxonox/trunk/src/world_entities/skysphere.cc

    r4094 r4444  
    6868  PRINTF(1)("initializing the Skysphere with Material %s.\n", fileName);
    6969  this->sphereObj = gluNewQuadric();
    70   this->setMode(PNODE_MOVEMENT);
     70  this->setParentMode(PNODE_MOVEMENT);
    7171
    7272  gluQuadricTexture(this->sphereObj, GL_TRUE);
Note: See TracChangeset for help on using the changeset viewer.