Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,147 Lines • ▼ Show 20 Lines | typedef struct NodeGeometryAlignRotationToVector { | ||||
| /* GeometryNodeAttributeInputMode */ | /* GeometryNodeAttributeInputMode */ | ||||
| uint8_t input_type_factor; | uint8_t input_type_factor; | ||||
| uint8_t input_type_vector; | uint8_t input_type_vector; | ||||
| char _pad[5]; | char _pad[5]; | ||||
| } NodeGeometryAlignRotationToVector; | } NodeGeometryAlignRotationToVector; | ||||
| typedef struct NodeGeometryPointScale { | |||||
| /* GeometryNodeAttributeInputMode */ | |||||
| uint8_t input_type; | |||||
| char _pad[7]; | |||||
| } NodeGeometryPointScale; | |||||
| typedef struct NodeGeometryPointTranslate { | |||||
| /* GeometryNodeAttributeInputMode */ | |||||
| uint8_t input_type; | |||||
| char _pad[7]; | |||||
| } NodeGeometryPointTranslate; | |||||
| /* 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 436 Lines • Show Last 20 Lines | |||||