1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00

Don't let the optimizer mess with collision switch nodes (again)

This commit is contained in:
Alexei Kotov 2024-06-13 22:24:40 +03:00
parent b001deeff7
commit 4f8856f887

View File

@ -741,7 +741,11 @@ namespace NifOsg
}
if (nifNode->recType == Nif::RC_NiCollisionSwitch && !nifNode->collisionActive())
{
node->setNodeMask(Loader::getIntersectionDisabledNodeMask());
// Don't let the optimizer mess with this node
node->setDataVariance(osg::Object::DYNAMIC);
}
osg::ref_ptr<SceneUtil::CompositeStateSetUpdater> composite = new SceneUtil::CompositeStateSetUpdater;