Browse Source

Merge pull request #19489 from frading/typescript-add-Texture.updateMatrix()

Update Texture.d.ts
Mr.doob 5 years ago
parent
commit
509520f7c5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/textures/Texture.d.ts

+ 1 - 0
src/textures/Texture.d.ts

@@ -68,5 +68,6 @@ export class Texture extends EventDispatcher {
 	toJSON( meta: any ): any;
 	dispose(): void;
 	transformUv( uv: Vector2 ): Vector2;
+	updateMatrix(): void;
 
 }