From 41c8c5da9978b4435be365bf2d257ae11c792821 Mon Sep 17 00:00:00 2001 From: "VRCat\\VRKitten" Date: Mon, 7 Aug 2017 14:17:32 -0600 Subject: [PATCH] Order of multiplication of quaternions for rotation reversed Per AndrewMeadows comments and up = yAxis not necessarily always being true in the future, the ROT_Y_180 has been moved to be the second quaternion in the multiplcation to determine rotation --- unpublishedScripts/parent-ator/createParentator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpublishedScripts/parent-ator/createParentator.js b/unpublishedScripts/parent-ator/createParentator.js index c08aaa93a0..470b7d1845 100644 --- a/unpublishedScripts/parent-ator/createParentator.js +++ b/unpublishedScripts/parent-ator/createParentator.js @@ -15,7 +15,7 @@ var COLLISION_HULL_URL = Script.resolvePath('resources/Parent-Tool-CollisionHull // the fbx model needs to be rotated from where it would naturally face when it first initializes var ROT_Y_180 = {x: 0, y: 1, z: 0, w: 0}; -var START_ROTATION = Quat.normalize(Quat.multiply(ROT_Y_180, Camera.getOrientation())); +var START_ROTATION = Quat.normalize(Quat.multiply(Camera.getOrientation(), ROT_Y_180)); var START_POSITION = Vec3.sum(Vec3.sum(MyAvatar.position, { x: 0, y: 0.5, z: 0 }), Vec3.multiply(0.7, Quat.getForward(Camera.getOrientation())));