@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
19 lines (18 loc) • 468 B
text/typescript
export enum ParamType {
BOOLEAN = 'boolean',
BUTTON = 'button',
COLOR = 'color',
FLOAT = 'float',
FOLDER = 'folder',
INTEGER = 'integer',
PARAM_PATH = 'param_path',
NODE_PATH = 'node_path',
RAMP = 'ramp',
STRING = 'string',
VECTOR2 = 'vector2',
VECTOR3 = 'vector3',
VECTOR4 = 'vector4',
}
// export type ParamTypeKey = ParamType
// export type ParamTypeKeysArray = Array<ParamTypeKey>
// const ParamTypeKeysArray: ParamTypeKeysArray = [ParamType.BOOLEAN]