Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Aug 16, 2005, 8:28:04 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: cd debuging tour, the trip forced me to think about the cd feedback triggering - still working

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

Legend:

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

    r5033 r5042  
    3636
    3737  if(this->obbTree == NULL)
    38     this->obbTree = new OBBTree(5, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
     38    this->obbTree = new OBBTree(4, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
    3939}
    4040
  • orxonox/trunk/src/world_entities/npc.cc

    r5034 r5042  
    3434  this->loadModel("models/ships/bolido.obj");
    3535  if(this->obbTree == NULL)
    36     this->obbTree = new OBBTree(5, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
     36    this->obbTree = new OBBTree(4, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
    3737}
    3838
  • orxonox/trunk/src/world_entities/world_entity.cc

    r5033 r5042  
    7474    this->model = (Model*)ResourceManager::getInstance()->load(fileName, OBJ, RP_CAMPAIGN);
    7575    PRINTF(4)("creating obb tree\n");
    76     this->obbTree = new OBBTree(5, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
     76    this->obbTree = new OBBTree(4, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());
    7777  }
    7878  else
Note: See TracChangeset for help on using the changeset viewer.