Merge branch 'master' into issue_2195_draco
commit
426c1a340f
|
@ -529,17 +529,17 @@ void ColladaParser::ReadAnimation(XmlNode &node, Collada::Animation *pParent) {
|
||||||
// have it read into a channel
|
// have it read into a channel
|
||||||
ChannelMap::iterator newChannel = channels.insert(std::make_pair(id, AnimationChannel())).first;
|
ChannelMap::iterator newChannel = channels.insert(std::make_pair(id, AnimationChannel())).first;
|
||||||
ReadAnimationSampler(currentNode, newChannel->second);
|
ReadAnimationSampler(currentNode, newChannel->second);
|
||||||
} else if (currentName == "channel") {
|
}
|
||||||
std::string source_name, target;
|
} else if (currentName == "channel") {
|
||||||
XmlParser::getStdStrAttribute(currentNode, "source", source_name);
|
std::string source_name, target;
|
||||||
XmlParser::getStdStrAttribute(currentNode, "target", target);
|
XmlParser::getStdStrAttribute(currentNode, "source", source_name);
|
||||||
if (source_name[0] == '#') {
|
XmlParser::getStdStrAttribute(currentNode, "target", target);
|
||||||
source_name = source_name.substr(1, source_name.size() - 1);
|
if (source_name[0] == '#') {
|
||||||
}
|
source_name = source_name.substr(1, source_name.size() - 1);
|
||||||
ChannelMap::iterator cit = channels.find(source_name);
|
}
|
||||||
if (cit != channels.end()) {
|
ChannelMap::iterator cit = channels.find(source_name);
|
||||||
cit->second.mTarget = target;
|
if (cit != channels.end()) {
|
||||||
}
|
cit->second.mTarget = target;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue