Ver Fonte

Fix Texture.transformUv d.ts signature

Ondřej Španěl há 5 anos atrás
pai
commit
025c347bea
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
 
 }