You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
334 B
22 lines
334 B
2 years ago
|
export const NodeShaderStage = {
|
||
|
VERTEX: 'vertex',
|
||
|
FRAGMENT: 'fragment'
|
||
|
};
|
||
|
|
||
|
export const NodeUpdateType = {
|
||
|
NONE: 'none',
|
||
|
FRAME: 'frame',
|
||
|
OBJECT: 'object'
|
||
|
};
|
||
|
|
||
|
export const NodeType = {
|
||
|
BOOLEAN: 'bool',
|
||
|
INTEGER: 'int',
|
||
|
FLOAT: 'float',
|
||
|
VECTOR2: 'vec2',
|
||
|
VECTOR3: 'vec3',
|
||
|
VECTOR4: 'vec4',
|
||
|
MATRIX3: 'mat3',
|
||
|
MATRIX4: 'mat4'
|
||
|
};
|