nanogl-gltf
Version:
11 lines (10 loc) • 454 B
TypeScript
import { IExtensionFactory, IExtensionInstance } from "../IExtension";
import GltfLoader from "../../io/GltfLoader";
/**
* This extension allows to merge multiple small low-resolution textures into one atlas texture.
* It adds offset, rotation and scale properties to TextureInfo.
*/
export default class KHR_texture_transform implements IExtensionFactory {
readonly name: string;
createInstance(gltfLoader: GltfLoader): IExtensionInstance;
}