playcanvas
Version:
Open-source WebGL/WebGPU 3D engine for the web
19 lines (18 loc) • 631 B
TypeScript
/**
* @import { AppBase } from '../../app-base.js'
*/
/**
* The AnimComponentSystem manages creating and deleting AnimComponents.
*
* @category Animation
*/
export class AnimComponentSystem extends ComponentSystem {
id: string;
ComponentType: typeof AnimComponent;
initializeComponentData(component: any, data: any, properties: any): void;
onAnimationUpdate(dt: any): void;
cloneComponent(entity: any, clone: any): import("../component.js").Component;
onBeforeRemove(entity: any, component: any): void;
}
import { ComponentSystem } from '../system.js';
import { AnimComponent } from './component.js';