Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5790 in orxonox.OLD for trunk/src/lib/graphics/importer/model.cc


Ignore:
Timestamp:
Nov 27, 2005, 12:17:07 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: rescale of the screen-size should reload Models too on windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/importer/model.cc

    r5774 r5790  
    143143Model::Model(const char* modelName, MODEL_TYPE type)
    144144{
     145  this->setClassID(CL_MODEL, "Model");
    145146  PRINTF(4)("new 3D-Model is being created\n");
    146147  this->setName(modelName);
     
    178179  PRINTF(4)("Deleting Model ");
    179180  if (this->getName())
    180     {
    181       PRINT(4)("%s\n", this->getName());
    182     }
     181  {
     182    PRINT(4)("%s\n", this->getName());
     183  }
    183184  else
    184       PRINT(4)("\n");
     185  {
     186    PRINT(4)("\n");
     187  }
     188  this->cleanup();
    185189
    186190  PRINTF(5)("Deleting display Lists.\n");
     
    216220  //if (this->type == MODEL_DISPLAY_LIST)
    217221    //this->deleteArrays();
    218   this->cleanup();
     222  //  this->cleanup();
    219223
    220224  /* load the ModelInfo */
     
    230234
    231235  this->finalized = true;
     236}
     237
     238/**
     239 * rebuild the Model from the Information we got.
     240 */
     241void Model::rebuild()
     242{
     243  PRINTF(3)("Rebuilding Model '%s'\n", this->getName());
     244  this->finalize();
     245
    232246}
    233247
Note: See TracChangeset for help on using the changeset viewer.