Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,161 Lines • ▼ Show 20 Lines | |||||
| typedef struct NodeGeometryPointTranslate { | typedef struct NodeGeometryPointTranslate { | ||||
| /* GeometryNodeAttributeInputMode */ | /* GeometryNodeAttributeInputMode */ | ||||
| uint8_t input_type; | uint8_t input_type; | ||||
| char _pad[7]; | char _pad[7]; | ||||
| } NodeGeometryPointTranslate; | } NodeGeometryPointTranslate; | ||||
| typedef struct NodeGeometryObjectInfo { | |||||
| /* GeometryNodeTransformSpace. */ | |||||
| uint8_t transform_space; | |||||
| char _pad[7]; | |||||
| } NodeGeometryObjectInfo; | |||||
| /* script node mode */ | /* script node mode */ | ||||
| #define NODE_SCRIPT_INTERNAL 0 | #define NODE_SCRIPT_INTERNAL 0 | ||||
| #define NODE_SCRIPT_EXTERNAL 1 | #define NODE_SCRIPT_EXTERNAL 1 | ||||
| /* script node flag */ | /* script node flag */ | ||||
| #define NODE_SCRIPT_AUTO_UPDATE 1 | #define NODE_SCRIPT_AUTO_UPDATE 1 | ||||
| /* ies node mode */ | /* ies node mode */ | ||||
| ▲ Show 20 Lines • Show All 425 Lines • ▼ Show 20 Lines | |||||
| } GeometryNodeRotatePointsSpace; | } GeometryNodeRotatePointsSpace; | ||||
| typedef enum GeometryNodeAlignRotationToVectorAxis { | typedef enum GeometryNodeAlignRotationToVectorAxis { | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_X = 0, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_X = 0, | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Y = 1, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Y = 1, | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Z = 2, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Z = 2, | ||||
| } GeometryNodeAlignRotationToVectorAxis; | } GeometryNodeAlignRotationToVectorAxis; | ||||
| typedef enum GeometryNodeTransformSpace { | |||||
| GEO_NODE_TRANSFORM_SPACE_ORIGINAL = 0, | |||||
| GEO_NODE_TRANSFORM_SPACE_RELATIVE = 1, | |||||
| } GeometryNodeTransformSpace; | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||