Browse Source

Merge pull request #18394 from OndrejSpanel/fixDTSDecompose

TS: Matrix4.decompose returns the original matrix
Michael Herzog 5 years ago
parent
commit
09c7ae435b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/math/Matrix4.d.ts

+ 1 - 1
src/math/Matrix4.d.ts

@@ -178,7 +178,7 @@ export class Matrix4 implements Matrix {
 		translation?: Vector3,
 		rotation?: Quaternion,
 		scale?: Vector3
-	): Object[]; // [Vector3, Quaternion, Vector3]
+	): Matrix4;
 
 	/**
 	 * Creates a frustum matrix.