UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

13 lines (12 loc) 408 B
/** * Parser for basis files. */ export class BasisParser extends TextureParser { constructor(device: any); device: any; canParse(context: any): boolean; load(url: any, callback: any, asset: any): void; open(url: any, data: any, device: any, textureOptions?: {}): Texture; } import { TextureParser } from './texture.js'; import { Texture } from '../../../platform/graphics/texture.js';