threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
12 lines • 484 B
TypeScript
import { Importer } from '../../assetmanager';
import { KTXLoader } from 'three/examples/jsm/loaders/KTXLoader.js';
import { BaseImporterPlugin } from '../base/BaseImporterPlugin';
/**
* Adds support for loading `.ktx`, `image/ktx` files and data uris.
* @category Plugins
*/
export declare class KTXLoadPlugin extends BaseImporterPlugin {
static readonly PluginType = "KTXLoadPlugin";
protected _importer: Importer<KTXLoader>;
}
//# sourceMappingURL=KTXLoadPlugin.d.ts.map