- Timestamp:
- 03/21/12 18:36:20 (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/deprecated-dotosg/osg/LightModel.cpp
r10970 r13041 30 30 31 31 LightModel& lightmodel = static_cast<LightModel&>(obj); 32 32 33 33 osg::Vec4 ambient; 34 34 if (fr[0].matchWord("ambientIntensity") && … … 87 87 } 88 88 } 89 89 90 90 return iteratorAdvanced; 91 91 } … … 96 96 97 97 fw.indent() << "ambientIntensity " << lightmodel.getAmbientIntensity() << std::endl; 98 98 99 99 if (lightmodel.getColorControl()==osg::LightModel::SEPARATE_SPECULAR_COLOR) 100 100 fw.indent() << "colorControl SEPARATE_SPECULAR_COLOR" << std::endl; … … 106 106 else 107 107 fw.indent() << "localViewer FALSE"<< std::endl; 108 108 109 109 if (lightmodel.getTwoSided()) 110 110 fw.indent() << "twoSided TRUE"<< std::endl;
