Hi,

disable small feature culling with


Code:

viewer.getCamera()->setCullingMode(viewer.getCamera()->getCullingMode()
| ~osg::CullSettings::SMALL_FEATURE_CULLING); 





Enable it with:

Code:

viewer.getCamera()->setCullingMode(viewer.getCamera()->getCullingMode()
| osg::CullSettings::SMALL_FEATURE_CULLING); 


 (note the missing ~ here!)


Thank you!

Cheers,
Torben

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=42453#42453





_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to