Browse Source

Fix Texture.transformUv d.ts signature

Ondřej Španěl 5 years ago
parent
commit
025c347bea
1 changed files with 1 additions and 1 deletions
  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;
 
 }