Browse Source

Merge pull request #16695 from Tobi995/dev

TS: Add camera projectionMatrixInverse to type declarations
Michael Herzog 6 năm trước cách đây
mục cha
commit
2a83ab4ecc
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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;