threepipe
Version:
A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.
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