Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,520 Lines • ▼ Show 20 Lines | typedef struct NodeGeometryTransferAttribute { | ||||
| uint8_t mode; | uint8_t mode; | ||||
| char _pad[1]; | char _pad[1]; | ||||
| } NodeGeometryTransferAttribute; | } NodeGeometryTransferAttribute; | ||||
| typedef struct NodeGeometryRaycast { | typedef struct NodeGeometryRaycast { | ||||
| /* GeometryNodeRaycastMapMode. */ | /* GeometryNodeRaycastMapMode. */ | ||||
| uint8_t mapping; | uint8_t mapping; | ||||
| /* CustomDataType. */ | |||||
| int8_t data_type; | |||||
| /* Deprecated input types in new Raycast node. Can be removed when legacy nodes are no longer | |||||
| * supported. */ | |||||
| uint8_t input_type_ray_direction; | uint8_t input_type_ray_direction; | ||||
| uint8_t input_type_ray_length; | uint8_t input_type_ray_length; | ||||
| char _pad[1]; | |||||
| } NodeGeometryRaycast; | } NodeGeometryRaycast; | ||||
| typedef struct NodeGeometryCurveFill { | typedef struct NodeGeometryCurveFill { | ||||
| uint8_t mode; | uint8_t mode; | ||||
| } NodeGeometryCurveFill; | } NodeGeometryCurveFill; | ||||
| typedef struct NodeGeometryMeshToPoints { | typedef struct NodeGeometryMeshToPoints { | ||||
| /* GeometryNodeMeshToPointsMode */ | /* GeometryNodeMeshToPointsMode */ | ||||
| ▲ Show 20 Lines • Show All 701 Lines • Show Last 20 Lines | |||||