playcanvas
Version:
Open-source WebGL/WebGPU 3D engine for the web
12 lines (11 loc) • 311 B
JavaScript
import { AnimStateGraphParser } from "../parsers/anim-state-graph.js";
import { ResourceHandler } from "./handler.js";
class AnimStateGraphHandler extends ResourceHandler {
constructor(app) {
super(app, "animstategraph");
this.addParser(new AnimStateGraphParser());
}
}
export {
AnimStateGraphHandler
};