|
@@ -72,7 +72,7 @@ THREE.ViveController = function ( id ) {
|
|
if ( pose.position !== null ) scope.position.fromArray( pose.position );
|
|
if ( pose.position !== null ) scope.position.fromArray( pose.position );
|
|
if ( pose.orientation !== null ) scope.quaternion.fromArray( pose.orientation );
|
|
if ( pose.orientation !== null ) scope.quaternion.fromArray( pose.orientation );
|
|
scope.matrix.compose( scope.position, scope.quaternion, scope.scale );
|
|
scope.matrix.compose( scope.position, scope.quaternion, scope.scale );
|
|
- scope.matrix.multiplyMatrices( scope.standingMatrix, scope.matrix );
|
|
|
|
|
|
+ scope.matrix.premultiply( scope.standingMatrix );
|
|
scope.matrixWorldNeedsUpdate = true;
|
|
scope.matrixWorldNeedsUpdate = true;
|
|
scope.visible = true;
|
|
scope.visible = true;
|
|
|
|
|