소스 검색

Merge pull request #16695 from Tobi995/dev

TS: Add camera projectionMatrixInverse to type declarations
Michael Herzog 6 년 전
부모
커밋
2a83ab4ecc
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/cameras/Camera.d.ts

+ 5 - 0
src/cameras/Camera.d.ts

@@ -24,6 +24,11 @@ export class Camera extends Object3D {
    */
 	projectionMatrix: Matrix4;
 
+	/**
+   * This is the inverse of projectionMatrix.
+   */
+	projectionMatrixInverse: Matrix4;
+
 	isCamera: true;
 
 	copy( source: Camera, recursive?: boolean ): this;