From 2a00586e2134987711729a0bd2daaddd079d25b2 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Mon, 15 Jun 2015 10:30:30 -0700 Subject: [PATCH] Fix missing hack Matches hack in stopScript(). --- interface/src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index b332204e79..2bc41029f3 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -4383,6 +4383,7 @@ void Application::stopAllScripts(bool restart) { // HACK: ATM scripts cannot set/get their animation priorities, so we clear priorities // whenever a script stops in case it happened to have been setting joint rotations. // TODO: expose animation priorities and provide a layered animation control system. + _myAvatar->clearJointAnimationPriorities(); _myAvatar->clearScriptableSettings(); }