|
@@ -169,6 +169,7 @@ class WebXRController {
|
|
|
|
|
|
joint.matrix.fromArray( jointPose.transform.matrix );
|
|
|
joint.matrix.decompose( joint.position, joint.rotation, joint.scale );
|
|
|
+ joint.matrixWorldNeedsUpdate = true;
|
|
|
joint.jointRadius = jointPose.radius;
|
|
|
|
|
|
}
|
|
@@ -217,6 +218,7 @@ class WebXRController {
|
|
|
|
|
|
grip.matrix.fromArray( gripPose.transform.matrix );
|
|
|
grip.matrix.decompose( grip.position, grip.rotation, grip.scale );
|
|
|
+ grip.matrixWorldNeedsUpdate = true;
|
|
|
|
|
|
if ( gripPose.linearVelocity ) {
|
|
|
|
|
@@ -261,6 +263,7 @@ class WebXRController {
|
|
|
|
|
|
targetRay.matrix.fromArray( inputPose.transform.matrix );
|
|
|
targetRay.matrix.decompose( targetRay.position, targetRay.rotation, targetRay.scale );
|
|
|
+ targetRay.matrixWorldNeedsUpdate = true;
|
|
|
|
|
|
if ( inputPose.linearVelocity ) {
|
|
|
|