Browse Source

Merge pull request #16695 from Tobi995/dev

TS: Add camera projectionMatrixInverse to type declarations
Michael Herzog 6 years ago
parent
commit
2a83ab4ecc
1 changed files with 5 additions and 0 deletions
  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;
 	projectionMatrix: Matrix4;
 
 
+	/**
+   * This is the inverse of projectionMatrix.
+   */
+	projectionMatrixInverse: Matrix4;
+
 	isCamera: true;
 	isCamera: true;
 
 
 	copy( source: Camera, recursive?: boolean ): this;
 	copy( source: Camera, recursive?: boolean ): this;