web3d / node_modules /three /src /loaders /BufferGeometryLoader.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
419 Bytes
import { LoadingManager } from './LoadingManager';
import { BufferGeometry } from './../core/BufferGeometry';
export class BufferGeometryLoader {
constructor(manager?: LoadingManager);
manager: LoadingManager;
load(
url: string,
onLoad: (bufferGeometry: BufferGeometry) => void,
onProgress?: (event: any) => void,
onError?: (event: any) => void
): void;
parse(json: any): BufferGeometry;
}