mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 03:39:42 +00:00
Fill Switch and LOD nodes names
This commit is contained in:
parent
f405b1e247
commit
87598f9419
1 changed files with 2 additions and 0 deletions
|
@ -325,6 +325,7 @@ namespace NifOsg
|
|||
osg::ref_ptr<osg::LOD> handleLodNode(const Nif::NiLODNode* niLodNode)
|
||||
{
|
||||
osg::ref_ptr<osg::LOD> lod (new osg::LOD);
|
||||
lod->setName(niLodNode->name);
|
||||
lod->setCenterMode(osg::LOD::USER_DEFINED_CENTER);
|
||||
lod->setCenter(niLodNode->lodCenter);
|
||||
for (unsigned int i=0; i<niLodNode->lodLevels.size(); ++i)
|
||||
|
@ -339,6 +340,7 @@ namespace NifOsg
|
|||
osg::ref_ptr<osg::Switch> handleSwitchNode(const Nif::NiSwitchNode* niSwitchNode)
|
||||
{
|
||||
osg::ref_ptr<osg::Switch> switchNode (new osg::Switch);
|
||||
switchNode->setName(niSwitchNode->name);
|
||||
switchNode->setNewChildDefaultValue(false);
|
||||
return switchNode;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue