Disable freezeOnCull for weather particles
parent
5ca0ae5232
commit
fd1ccd21ff
@ -0,0 +1,32 @@
|
|||||||
|
#include "visitor.hpp"
|
||||||
|
|
||||||
|
#include <osg/Geode>
|
||||||
|
|
||||||
|
#include <osgParticle/ParticleSystem>
|
||||||
|
|
||||||
|
#include <components/misc/stringops.hpp>
|
||||||
|
|
||||||
|
namespace SceneUtil
|
||||||
|
{
|
||||||
|
|
||||||
|
void FindByNameVisitor::apply(osg::Group &group)
|
||||||
|
{
|
||||||
|
if (Misc::StringUtils::ciEqual(group.getName(), mNameToFind))
|
||||||
|
{
|
||||||
|
mFoundNode = &group;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
traverse(group);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DisableFreezeOnCullVisitor::apply(osg::Geode &geode)
|
||||||
|
{
|
||||||
|
for (unsigned int i=0; i<geode.getNumDrawables(); ++i)
|
||||||
|
{
|
||||||
|
osg::Drawable* drw = geode.getDrawable(i);
|
||||||
|
if (osgParticle::ParticleSystem* partsys = dynamic_cast<osgParticle::ParticleSystem*>(drw))
|
||||||
|
partsys->setFreezeOnCull(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue