Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,240 Lines • ▼ Show 20 Lines | typedef struct NodeAttributeMix { | ||||
| uint8_t input_type_b; | uint8_t input_type_b; | ||||
| } NodeAttributeMix; | } NodeAttributeMix; | ||||
| typedef struct NodeRandomValue { | typedef struct NodeRandomValue { | ||||
| /* CustomDataType. */ | /* CustomDataType. */ | ||||
| uint8_t data_type; | uint8_t data_type; | ||||
| } NodeRandomValue; | } NodeRandomValue; | ||||
| typedef struct NodeDataFill { | |||||
| /* CustomDataType. */ | |||||
| uint8_t data_type; | |||||
| } NodeDataFill; | |||||
| typedef struct NodeAttributeRandomize { | typedef struct NodeAttributeRandomize { | ||||
| /* CustomDataType. */ | /* CustomDataType. */ | ||||
| uint8_t data_type; | uint8_t data_type; | ||||
| /* AttributeDomain. */ | /* AttributeDomain. */ | ||||
| uint8_t domain; | uint8_t domain; | ||||
| /* GeometryNodeAttributeRandomizeMode. */ | /* GeometryNodeAttributeRandomizeMode. */ | ||||
| uint8_t operation; | uint8_t operation; | ||||
| char _pad[1]; | char _pad[1]; | ||||
| ▲ Show 20 Lines • Show All 928 Lines • Show Last 20 Lines | |||||