@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 550 B
TypeScript
/**
* DDS Texture Extension
*
* Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_texture_dds
*
*/
export default class GLTFTextureDDSExtension {
/**
*
* @param {GLTFParser} parser
* @param {DDSLoader} ddsLoader
*/
constructor(parser: GLTFParser, ddsLoader: DDSLoader);
name: string;
/**
*
* @type {GLTFParser}
*/
parser: GLTFParser;
ddsLoader: DDSLoader;
loadTexture(textureIndex: any): any;
}
//# sourceMappingURL=MSFT_texture_dds.d.ts.map