Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,078 Lines • ▼ Show 20 Lines | typedef struct NodeAttributeMix { | ||||
| uint8_t blend_type; | uint8_t blend_type; | ||||
| /* GeometryNodeAttributeInputMode */ | /* GeometryNodeAttributeInputMode */ | ||||
| uint8_t input_type_factor; | uint8_t input_type_factor; | ||||
| uint8_t input_type_a; | uint8_t input_type_a; | ||||
| uint8_t input_type_b; | uint8_t input_type_b; | ||||
| } NodeAttributeMix; | } NodeAttributeMix; | ||||
| typedef struct NodeAttributeColorRamp { | |||||
| ColorBand color_ramp; | |||||
| } NodeAttributeColorRamp; | |||||
| /* 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 412 Lines • Show Last 20 Lines | |||||