Explorar el Código

Fix Texture.transformUv d.ts signature

Ondřej Španěl hace 5 años
padre
commit
025c347bea
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
 
 }