Merge pull request #11469 from SamGondelman/tPose

Don't constantly reload animGraph if URL didn't change
This commit is contained in:
Sam Gateau 2017-09-27 14:46:05 -07:00 committed by GitHub
commit f25e4203fd

View file

@ -1619,6 +1619,7 @@ void Rig::updateFromControllerParameters(const ControllerParameters& params, flo
}
void Rig::initAnimGraph(const QUrl& url) {
if (_animGraphURL != url) {
_animGraphURL = url;
_animNode.reset();
@ -1641,6 +1642,7 @@ void Rig::initAnimGraph(const QUrl& url) {
connect(_animLoader.get(), &AnimNodeLoader::error, [url](int error, QString str) {
qCCritical(animation) << "Error loading" << url.toDisplayString() << "code = " << error << "str =" << str;
});
}
}
bool Rig::getModelRegistrationPoint(glm::vec3& modelRegistrationPointOut) const {