From Rolad Smeenk, "Forgot a call to uniqify when generating an Id based on osg::Node name."
This commit is contained in:
parent
6ae07ce0e2
commit
9addcc050d
@ -119,7 +119,7 @@ std::string daeWriter::getNodeName(const osg::Node & node,const std::string & de
|
||||
if (node.getName().empty())
|
||||
nodeName=uniquify(defaultName);
|
||||
else
|
||||
nodeName=node.getName();
|
||||
nodeName=uniquify(node.getName());
|
||||
return nodeName;
|
||||
}
|
||||
|
||||
@ -198,4 +198,4 @@ void daeWriter::popStateSet(osg::StateSet* ss)
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace osgdae
|
||||
} // namespace osgdae
|
||||
|
Loading…
Reference in New Issue
Block a user