Prechádzať zdrojové kódy

Fix Texture.transformUv d.ts signature

Ondřej Španěl 5 rokov pred
rodič
commit
025c347bea
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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;
 
 }