From dda32f1987363d6213ba459893418c33fddc2400 Mon Sep 17 00:00:00 2001 From: Liv Erickson Date: Thu, 16 Nov 2017 09:26:42 -0800 Subject: [PATCH] Emit scale changed signal when scaled with hand controllers --- scripts/system/controllers/controllerModules/scaleAvatar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/system/controllers/controllerModules/scaleAvatar.js b/scripts/system/controllers/controllerModules/scaleAvatar.js index de0434258c..1fb7e0c9d7 100644 --- a/scripts/system/controllers/controllerModules/scaleAvatar.js +++ b/scripts/system/controllers/controllerModules/scaleAvatar.js @@ -63,6 +63,7 @@ var newAvatarScale = (scalingCurrentDistance / this.scalingStartDistance) * this.scalingStartAvatarScale; MyAvatar.scale = newAvatarScale; + MyAvatar.scaleChanged(); } return dispatcherUtils.makeRunningValues(true, [], []); }