Browse Source

Merge pull request #20828 from Mugen87/dev40

Matrix3: Add missing return statement to setUvTransform().
Mr.doob 4 years ago
parent
commit
d01e8ecdd1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/math/Matrix3.js

+ 2 - 0
src/math/Matrix3.js

@@ -239,6 +239,8 @@ class Matrix3 {
 			0, 0, 1
 		);
 
+		return this;
+
 	}
 
 	scale( sx, sy ) {