Changeset 5769 in orxonox.OLD for trunk/src/lib/graphics
- Timestamp:
- Nov 24, 2005, 11:18:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/texture.cc
r5768 r5769 33 33 { 34 34 this->setClassID(CL_TEXTURE, "Texture"); 35 this->setName(imageName);36 35 37 36 this->bAlpha = false; … … 40 39 41 40 if (imageName != NULL) 41 { 42 this->setName(imageName); 42 43 this->loadImage(imageName); 44 } 43 45 } 44 46 … … 116 118 if (this->image != NULL) 117 119 { 118 PRINTF( 4)("Reloading Texture %s\n", this->getName());120 PRINTF(1)("Reloading Texture of %s '%s'\n", this->getClassName(), this->getName()); 119 121 this->loadTexToGL(); 120 122 }
Note: See TracChangeset
for help on using the changeset viewer.