Changeset 7055 in orxonox.OLD for trunk/src/lib/graphics
- Timestamp:
- Feb 6, 2006, 2:52:14 PM (19 years ago)
- Location:
- trunk/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/md2Model.cc
r6645 r7055 75 75 \brief simple constructor initializing all variables 76 76 */ 77 MD2Model::MD2Model(const char* modelFileName, const char* skinFileName )77 MD2Model::MD2Model(const char* modelFileName, const char* skinFileName, float scale) 78 78 { 79 79 /* this creates the data container via ressource manager */ … … 82 82 PRINTF(0)("The model was not found, MD2Model Loader finished abnormaly. Update the data-repos\n"); 83 83 84 this->data->scaleFactor = scaleFactor; 84 85 this->scaleFactor = this->data->scaleFactor; 85 86 -
trunk/src/lib/graphics/importer/md2Model.h
r6222 r7055 178 178 { 179 179 public: 180 MD2Data(const char* modelFileName, const char* skinFileName);180 MD2Data(const char* modelFileName, const char* skinFileName); 181 181 virtual ~MD2Data(); 182 182 … … 212 212 213 213 public: 214 MD2Model(const char* modelFileName, const char* skinFileName = NULL );214 MD2Model(const char* modelFileName, const char* skinFileName = NULL, float scale = 1.0f); 215 215 virtual ~MD2Model(); 216 216
Note: See TracChangeset
for help on using the changeset viewer.