mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 18:45:36 +00:00
Merge branch 'useless_check' into 'master'
Simplify NodeMapVisitor::apply See merge request OpenMW/openmw!955
This commit is contained in:
commit
87c46fb3de
1 changed files with 1 additions and 5 deletions
|
@ -65,11 +65,7 @@ namespace SceneUtil
|
|||
if (trans.libraryName() == std::string("osgAnimation"))
|
||||
{
|
||||
// Convert underscores to whitespaces as a workaround for Collada (OpenMW's animation system uses whitespace-separated names)
|
||||
std::string underscore = "_";
|
||||
std::size_t foundUnderscore = originalNodeName.find(underscore);
|
||||
|
||||
if (foundUnderscore != std::string::npos)
|
||||
std::replace(originalNodeName.begin(), originalNodeName.end(), '_', ' ');
|
||||
std::replace(originalNodeName.begin(), originalNodeName.end(), '_', ' ');
|
||||
}
|
||||
|
||||
const std::string nodeName = originalNodeName;
|
||||
|
|
Loading…
Reference in a new issue