diff --git a/scripts/system/controllers/controllerDispatcher.js b/scripts/system/controllers/controllerDispatcher.js index 7a916392b9..f23b61a5b1 100644 --- a/scripts/system/controllers/controllerDispatcher.js +++ b/scripts/system/controllers/controllerDispatcher.js @@ -408,7 +408,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); triggers: [{action: Controller.Standard.LTClick, button: "Focus"}, {action: Controller.Standard.LTClick, button: "Primary"}], posOffset: getGrabPointSphereOffset(Controller.Standard.LeftHand, true), hover: true, - scaleWithAvatar: true, + scaleWithParent: true, distanceScaleEnd: true, hand: LEFT_HAND }); @@ -418,7 +418,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); triggers: [{action: Controller.Standard.RTClick, button: "Focus"}, {action: Controller.Standard.RTClick, button: "Primary"}], posOffset: getGrabPointSphereOffset(Controller.Standard.RightHand, true), hover: true, - scaleWithAvatar: true, + scaleWithParent: true, distanceScaleEnd: true, hand: RIGHT_HAND }); @@ -429,7 +429,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); posOffset: getGrabPointSphereOffset(Controller.Standard.LeftHand, true), triggers: [{action: Controller.Standard.LTClick, button: "Focus"}, {action: Controller.Standard.LTClick, button: "Primary"}], hover: true, - scaleWithAvatar: true, + scaleWithParent: true, distanceScaleEnd: true, hand: LEFT_HAND }); @@ -440,7 +440,7 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); posOffset: getGrabPointSphereOffset(Controller.Standard.RightHand, true), triggers: [{action: Controller.Standard.RTClick, button: "Focus"}, {action: Controller.Standard.RTClick, button: "Primary"}], hover: true, - scaleWithAvatar: true, + scaleWithParent: true, distanceScaleEnd: true, hand: RIGHT_HAND }); diff --git a/scripts/system/controllers/controllerModules/teleport.js b/scripts/system/controllers/controllerModules/teleport.js index deaa934f99..077d529262 100644 --- a/scripts/system/controllers/controllerModules/teleport.js +++ b/scripts/system/controllers/controllerModules/teleport.js @@ -169,7 +169,7 @@ Script.include("/~/system/libraries/controllers.js"); posOffset: { x: (_this.hand === RIGHT_HAND) ? 0.03 : -0.03, y: 0.2, z: 0.02 }, filter: Picks.PICK_ENTITIES | Picks.PICK_INCLUDE_INVISIBLE, faceAvatar: true, - scaleWithAvatar: true, + scaleWithParent: true, centerEndY: false, speed: speed, accelerationAxis: accelerationAxis, @@ -185,7 +185,7 @@ Script.include("/~/system/libraries/controllers.js"); posOffset: { x: (_this.hand === RIGHT_HAND) ? 0.03 : -0.03, y: 0.2, z: 0.02 }, filter: Picks.PICK_ENTITIES | Picks.PICK_INCLUDE_INVISIBLE, faceAvatar: true, - scaleWithAvatar: true, + scaleWithParent: true, centerEndY: false, speed: speed, accelerationAxis: accelerationAxis, @@ -198,7 +198,7 @@ Script.include("/~/system/libraries/controllers.js"); joint: "Avatar", filter: Picks.PICK_ENTITIES | Picks.PICK_INCLUDE_INVISIBLE, faceAvatar: true, - scaleWithAvatar: true, + scaleWithParent: true, centerEndY: false, speed: speed, accelerationAxis: accelerationAxis, @@ -212,7 +212,7 @@ Script.include("/~/system/libraries/controllers.js"); joint: "Avatar", filter: Picks.PICK_ENTITIES | Picks.PICK_INCLUDE_INVISIBLE, faceAvatar: true, - scaleWithAvatar: true, + scaleWithParent: true, centerEndY: false, speed: speed, accelerationAxis: accelerationAxis, diff --git a/scripts/system/controllers/grab.js b/scripts/system/controllers/grab.js index 066ef18c97..48229ac9d9 100644 --- a/scripts/system/controllers/grab.js +++ b/scripts/system/controllers/grab.js @@ -272,7 +272,7 @@ function Grabber() { joint: "Mouse", filter: Picks.PICK_ENTITIES | Picks.PICK_INCLUDE_NONCOLLIDABLE, faceAvatar: true, - scaleWithAvatar: true, + scaleWithParent: true, enabled: true, renderStates: renderStates });