Changeset 4714 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Jun 26, 2005, 11:41:29 PM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/environment.cc
r4712 r4714 35 35 this->model = (Model*)ResourceManager::getInstance()->load("models/reaplow.obj"/*"worlds/vulcania.obj"*/, OBJ, RP_CAMPAIGN); 36 36 37 this->obbTree = new OBBTree(1 5, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount());37 this->obbTree = new OBBTree(10, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount()); 38 38 } 39 39 -
orxonox/trunk/src/world_entities/test_entity.cc
r4712 r4714 31 31 this->setClassID(CL_TEST_ENTITY, "TestEntity"); 32 32 33 this->md2Model = new MD2Model("models/tris.md2", "models/tris.pcx"); 33 // this->md2Model = new MD2Model("models/tris.md2", "models/tris.pcx"); 34 this->md2Model = new MD2Model("models/shogun.md2", "maps/shogun.pcx"); 34 35 this->obbTree = new OBBTree(7, (sVec3D*)this->md2Model->data->pVertices, this->md2Model->data->numVertices); 36 37 this->md2Model->setAnim(0); 35 38 this->md2Model->debug(); 36 39 }
Note: See TracChangeset
for help on using the changeset viewer.