Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4621 in orxonox.OLD for orxonox/trunk/src/world_entities/skybox.cc


Ignore:
Timestamp:
Jun 13, 2005, 2:29:41 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: SkyBox now loads property size

File:
1 edited

Legend:

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

    r4620 r4621  
    6262
    6363  LoadParam<SkyBox>(root, "Materialset", this, &SkyBox::setTexture)
    64     .describe("Sets the material on the SkyBox. The string must be the path relative to the data-dir, and without a trailing .jpg");
     64      .describe("Sets the material on the SkyBox. The string must be the path relative to the data-dir, and without a trailing .jpg");
     65
     66  LoadParam<SkyBox>(root, "Size", this, &SkyBox::setSize)
     67      .describe("Sets the Size of the SkyBox (normally this should be 90% of the maximal viewing Distance).");
    6568}
    6669
     
    6972  this->setClassID(CL_SKYBOX, "SkyBox");
    7073
    71   this->size = 1900.0;
     74  this->size = 100.0;
    7275
    7376  this->skyModel = NULL;
     
    158161/**
    159162   \param size The new size of the SkyBox
     163
     164 * do not forget to rebuild the SkyBox after this.
    160165*/
    161166void SkyBox::setSize(float size)
    162167{
    163168  this->size = size;
    164   this->rebuild();
    165169}
    166170
Note: See TracChangeset for help on using the changeset viewer.