- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/serializers/osgSim/LightPointNode.cpp
r12688 r13041 18 18 is >> osgDB::PROPERTY("Position") >> pt._position; 19 19 is >> osgDB::PROPERTY("Color") >> pt._color; 20 20 21 21 int blendingMode = 0; 22 22 is >> osgDB::PROPERTY("Attributes") >> pt._on >> blendingMode >> pt._intensity >> pt._radius; 23 23 pt._blendingMode = (osgSim::LightPoint::BlendingMode)blendingMode; 24 24 25 25 bool hasObject = false; is >> osgDB::PROPERTY("Sector") >> hasObject; 26 26 if ( hasObject )
