don't reload animGraph if url didn't change

This commit is contained in:
SamGondelman 2017-09-26 18:18:41 -07:00
parent ca4d5ef807
commit 306cf883fe

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 {