Changeset 4357 in orxonox.OLD for orxonox/trunk/src/lib/graphics/importer/model.cc
- Timestamp:
- May 28, 2005, 12:05:46 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/model.cc
r4112 r4357 489 489 If a vertexTextureCoordinate line is found, 490 490 this function will inject it into the vertexTexture-Array 491 492 !! WARNING THIS IS DIFFERNT FROM addVervexTexture(float, float); because it changes the second entry to 1-v !! 491 493 */ 492 494 bool Model::addVertexTexture (const char* vTextureString) … … 497 499 PRINTF(5)("found vertex-Texture %f, %f\n", &subbuffer1, &subbuffer2); 498 500 this->vTexture->addEntry(subbuffer1); 499 this->vTexture->addEntry( subbuffer2);501 this->vTexture->addEntry(1 - subbuffer2); 500 502 this->texCoordCount++; 501 503 return true;
Note: See TracChangeset
for help on using the changeset viewer.