启用VR模式翻转ViewCube

时间:2017-08-21 07:17:14

标签: autodesk-forge webvr autodesk-viewer

一旦我从菜单中单击“启用VR模式”按钮,ViewCube就会翻转,以便ViewCube的底部朝上。该模型保持正面朝上,但ViewCube翻转。

如果我与此示例http://viewervr.herokuapp.com/进行比较,似乎ViewCube保持正确。

我正在加载WebVR扩展,如下所示:

public initialize(): void {
   const options = {
      'env': 'AutodeskProduction',
      'getAccessToken': this.getToken,
      'refreshToken': this.getToken
   };
   const element = document.getElementById(this.id);
   this.viewer = new avp.GuiViewer3D(element);

   av.Initializer(
   options,
   () => {
      this.viewer.initialize();
      this.initiliazeDefaultSettings();
      this.initiliazeEventListeners();                    
      this.loadDocument(this.urn);
      this.viewer.loadExtension('Autodesk.Viewing.WebVR');
   });
}

如何解决这个问题?

0 个答案:

没有答案