Changeset 4244 in orxonox.OLD for orxonox/branches/md2_loader/src
- Timestamp:
- May 20, 2005, 11:05:27 AM (20 years ago)
- Location:
- orxonox/branches/md2_loader/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/md2_loader/src/lib/graphics/importer/md2Model.cc
r4238 r4244 516 516 this->scaleFactor = 1.0f; 517 517 518 this->setAnim( STAND);518 this->setAnim(BOOM); 519 519 } 520 520 … … 583 583 pVertex[j][0] = (frame->pVertices[j].v[0] * frame->scale[0]) + frame->translate[0]; 584 584 pVertex[j][1] = (frame->pVertices[j].v[2] * frame->scale[2]) + frame->translate[2]; 585 pVertex[j][2] = -1.0 * (frame->pVertices[j].v[1] * frame->scale[1] ) + frame->translate[1];585 pVertex[j][2] = -1.0 * (frame->pVertices[j].v[1] * frame->scale[1] + frame->translate[1]); 586 586 587 587 pNormals[j] = frame->pVertices[j].lightNormalIndex; -
orxonox/branches/md2_loader/src/world_entities/test_entity.cc
r4232 r4244 44 44 void TestEntity::tick (float time) 45 45 { 46 //this->md2Model2->tick(time);46 this->md2Model2->tick(time); 47 47 } 48 48
Note: See TracChangeset
for help on using the changeset viewer.