playcanvas
Version:
Open-source WebGL/WebGPU 3D engine for the web
14 lines (13 loc) • 403 B
TypeScript
/**
* Parser for PlayCanvas JSON {@link Animation} resources. Acts as the catch-all (non-glb) animation
* parser.
*
* @ignore
*/
export class JsonAnimationParser {
canParse(): boolean;
load(url: any, callback: any, asset: any): void;
_parseAnimationV3(data: any): Animation;
_parseAnimationV4(data: any): Animation;
}
import { Animation } from '../../scene/animation/animation.js';