Collada importer now identifies animations

addresses issue #3584
pull/3619/head
contriteobserver 2021-01-28 13:06:02 -08:00
parent b2af2b2137
commit e33b69a428
1 changed files with 11 additions and 11 deletions

View File

@ -530,6 +530,7 @@ void ColladaParser::ReadAnimation(XmlNode &node, Collada::Animation *pParent) {
// have it read into a channel
ChannelMap::iterator newChannel = channels.insert(std::make_pair(id, AnimationChannel())).first;
ReadAnimationSampler(currentNode, newChannel->second);
}
} else if (currentName == "channel") {
std::string source_name, target;
XmlParser::getStdStrAttribute(currentNode, "source", source_name);
@ -543,7 +544,6 @@ void ColladaParser::ReadAnimation(XmlNode &node, Collada::Animation *pParent) {
}
}
}
}
// it turned out to have channels - add them
if (!channels.empty()) {