소스 검색

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

Update Texture.d.ts
Mr.doob 5 년 전
부모
커밋
509520f7c5
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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;
 
 }