13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
|
|
/**
|
||
|
|
* 节点数据类型
|
||
|
|
*/
|
||
|
|
export const NODE_DATATYPE = {
|
||
|
|
RESULT_IMAGE: 'result-image',
|
||
|
|
CARDS_SELECT: 'cards-select',
|
||
|
|
TO_REAL_STYLE: 'to-real-style',
|
||
|
|
SURFACE_EDIT: 'surface-edit',
|
||
|
|
SCENE_COMPOSITION: 'scene-composition',
|
||
|
|
COLOR_PALETTE: 'color-palette',
|
||
|
|
TO_3VIEW: 'to-3view',
|
||
|
|
TO_3D_MODEL: 'to-3d-model',
|
||
|
|
}
|