1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-17 10:21:11 +00:00

Merge branch 'useless_check' into 'master'

Simplify NodeMapVisitor::apply

See merge request OpenMW/openmw!955
This commit is contained in:
Evil Eye 2021-06-24 17:12:40 +00:00
commit 87c46fb3de

View File

@ -65,11 +65,7 @@ namespace SceneUtil
if (trans.libraryName() == std::string("osgAnimation")) if (trans.libraryName() == std::string("osgAnimation"))
{ {
// Convert underscores to whitespaces as a workaround for Collada (OpenMW's animation system uses whitespace-separated names) // Convert underscores to whitespaces as a workaround for Collada (OpenMW's animation system uses whitespace-separated names)
std::string underscore = "_"; std::replace(originalNodeName.begin(), originalNodeName.end(), '_', ' ');
std::size_t foundUnderscore = originalNodeName.find(underscore);
if (foundUnderscore != std::string::npos)
std::replace(originalNodeName.begin(), originalNodeName.end(), '_', ' ');
} }
const std::string nodeName = originalNodeName; const std::string nodeName = originalNodeName;