|
@@ -80,7 +80,9 @@ export class WebXRHTCViveMotionController extends WebXRAbstractMotionController
|
|
meshes.forEach((mesh) => { mesh.isPickable = false; });
|
|
meshes.forEach((mesh) => { mesh.isPickable = false; });
|
|
this._modelRootNode = meshes[1];
|
|
this._modelRootNode = meshes[1];
|
|
this._modelRootNode.parent = this.rootMesh;
|
|
this._modelRootNode.parent = this.rootMesh;
|
|
- this.rootMesh.rotationQuaternion = Quaternion.FromEulerAngles(0, Math.PI, 0);
|
|
|
|
|
|
+ if (!this.scene.useRightHandedSystem) {
|
|
|
|
+ this.rootMesh.rotationQuaternion = Quaternion.FromEulerAngles(0, Math.PI, 0);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
protected _updateModel(): void {
|
|
protected _updateModel(): void {
|