소스 검색

Update babylon.webVRCamera.ts

Fixing context errors
Raanan Weber 8 년 전
부모
커밋
ce660bf53f
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Cameras/VR/babylon.webVRCamera.ts

+ 1 - 0
src/Cameras/VR/babylon.webVRCamera.ts

@@ -220,6 +220,7 @@ module BABYLON {
             Vector3.TransformCoordinatesToRef(this._referencePoint, this._cameraRotationMatrix, this._transformedReferencePoint);
 
             // Computing target for getTarget()
+            this._positionOffset = this._positionOffset || Vector3.Zero();
             this._webvrViewMatrix.getTranslationToRef(this._positionOffset);
             this._positionOffset.addToRef(this._transformedReferencePoint, this._currentTarget);