web3d / node_modules /three /src /loaders /AnimationLoader.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
479 Bytes
import { LoadingManager } from './LoadingManager';
import { AnimationClip } from './../animation/AnimationClip';
export class AnimationLoader {
constructor(manager?: LoadingManager);
manager: LoadingManager;
load(
url: string,
onLoad?: (response: string | ArrayBuffer) => void,
onProgress?: (request: ProgressEvent) => void,
onError?: (event: ErrorEvent) => void
): any;
parse(json: any): AnimationClip[];
setPath(path: string): AnimationLoader;
}