UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

15 lines (14 loc) 260 B
export class ParamConfigsController { constructor() { this._param_configs = []; } reset() { this._param_configs = []; } push(param_config) { this._param_configs.push(param_config); } get list() { return this._param_configs; } }