UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

20 lines (19 loc) 718 B
/** * Manages creation of {@link ScrollbarComponent}s. * * @category User Interface */ export class ScrollbarComponentSystem extends ComponentSystem { id: string; ComponentType: typeof ScrollbarComponent; DataType: typeof ScrollbarComponentData; schema: string[]; initializeComponentData(component: any, data: any, properties: any): void; cloneComponent(entity: any, clone: any): Component; _onAddComponent(entity: any): void; _onRemoveComponent(entity: any, component: any): void; } import { ComponentSystem } from '../system.js'; import { ScrollbarComponent } from './component.js'; import { ScrollbarComponentData } from './data.js'; import { Component } from '../component.js';