Browse Source

Fix Texture.transformUv d.ts signature

Ondřej Španěl 5 năm trước cách đây
mục cha
commit
025c347bea
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/textures/Texture.d.ts

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

@@ -62,6 +62,6 @@ export class Texture extends EventDispatcher {
 	copy( source: Texture ): this;
 	toJSON( meta: any ): any;
 	dispose(): void;
-	transformUv( uv: Vector ): void;
+	transformUv( uv: Vector2 ): Vector2;
 
 }