forked from mirror/openmw-tes3mp
Fix checking a variable before it's assigned (Bug #3950)
This commit is contained in:
parent
be940656db
commit
40dc1dd6f5
1 changed files with 5 additions and 5 deletions
|
@ -623,11 +623,6 @@ namespace NifOsg
|
|||
node->setNodeMask(0x1);
|
||||
}
|
||||
|
||||
if (skipMeshes && isAnimated) // make sure the empty node is not optimized away so the physicssystem can find it.
|
||||
{
|
||||
node->setDataVariance(osg::Object::DYNAMIC);
|
||||
}
|
||||
|
||||
// We can skip creating meshes for hidden nodes if they don't have a VisController that
|
||||
// might make them visible later
|
||||
if (nifNode->flags & Nif::NiNode::Flag_Hidden)
|
||||
|
@ -643,6 +638,11 @@ namespace NifOsg
|
|||
node->setNodeMask(0x1);
|
||||
}
|
||||
|
||||
if (skipMeshes && isAnimated) // make sure the empty node is not optimized away so the physicssystem can find it.
|
||||
{
|
||||
node->setDataVariance(osg::Object::DYNAMIC);
|
||||
}
|
||||
|
||||
osg::ref_ptr<SceneUtil::CompositeStateSetUpdater> composite = new SceneUtil::CompositeStateSetUpdater;
|
||||
|
||||
applyNodeProperties(nifNode, node, composite, imageManager, boundTextures, animflags);
|
||||
|
|
Loading…
Reference in a new issue