|
|
|
@ -5,6 +5,8 @@
|
|
|
|
|
#include <osg/Drawable>
|
|
|
|
|
#include <osg/NodeVisitor>
|
|
|
|
|
|
|
|
|
|
#include <osgUtil/CullVisitor>
|
|
|
|
|
|
|
|
|
|
#include <components/debug/debuglog.hpp>
|
|
|
|
|
#include <components/resource/scenemanager.hpp>
|
|
|
|
|
|
|
|
|
@ -236,6 +238,13 @@ namespace SceneUtil
|
|
|
|
|
|
|
|
|
|
if (nv.getVisitorType() == osg::NodeVisitor::CULL_VISITOR && mSourceRigGeometry.get())
|
|
|
|
|
{
|
|
|
|
|
// The cull visitor won't be applied to the node itself,
|
|
|
|
|
// but we want to use its state to render the child geometry.
|
|
|
|
|
osg::StateSet* stateset = getStateSet();
|
|
|
|
|
osgUtil::CullVisitor* cv = static_cast<osgUtil::CullVisitor*>(&nv);
|
|
|
|
|
if (stateset)
|
|
|
|
|
cv->pushStateSet(stateset);
|
|
|
|
|
|
|
|
|
|
unsigned int traversalNumber = nv.getTraversalNumber();
|
|
|
|
|
if (mLastFrameNumber == traversalNumber)
|
|
|
|
|
{
|
|
|
|
@ -273,6 +282,9 @@ namespace SceneUtil
|
|
|
|
|
nv.apply(geom);
|
|
|
|
|
nv.popFromNodePath();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stateset)
|
|
|
|
|
cv->popStateSet();
|
|
|
|
|
}
|
|
|
|
|
else if (nv.getVisitorType() == osg::NodeVisitor::UPDATE_VISITOR)
|
|
|
|
|
{
|
|
|
|
|