Changeset 8596 in orxonox.OLD for branches/gui/src/lib/graphics
- Timestamp:
- Jun 20, 2006, 12:48:50 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/graphics/importer/material.cc
r8583 r8596 52 52 Material& Material::operator=(const Material& material) 53 53 { 54 this-> setIllum(material.illumModel);55 this-> setDiffuseColor(material.diffuseColor());54 this->illumModel = material.illumModel; 55 this->diffuse = material.diffuse; 56 56 this->specular = material.specular; 57 57 this->ambient = material.ambient; 58 this->s etShininess(material.shininess);58 this->shininess = material.shininess; 59 59 60 60 this->textures = material.textures;
Note: See TracChangeset
for help on using the changeset viewer.