Changeset 13041 for OpenSceneGraph/trunk/src/osgWrappers/deprecated-dotosg/osgVolume/CompositeProperty.cpp
- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/deprecated-dotosg/osgVolume/CompositeProperty.cpp
r12292 r13041 32 32 33 33 bool itrAdvanced = false; 34 35 osg::ref_ptr<osg::Object> readObject; 34 35 osg::ref_ptr<osg::Object> readObject; 36 36 do 37 37 { 38 38 readObject = fr.readObjectOfType(osgDB::type_wrapper<osgVolume::Property>()); 39 39 if (readObject.valid()) itrAdvanced = true; 40 40 41 41 osgVolume::Property* property = dynamic_cast<osgVolume::Property*>(readObject.get()); 42 42 if (property) cp.addProperty(property); 43 43 44 44 } while (readObject.valid()); 45 45
