Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 352 Lines • ▼ Show 20 Lines | typedef struct bNode { | ||||
| /** Custom user-defined color. */ | /** Custom user-defined color. */ | ||||
| float color[3]; | float color[3]; | ||||
| char _pad2[4]; | char _pad2[4]; | ||||
| bNodeRuntimeHandle *runtime; | bNodeRuntimeHandle *runtime; | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| /** The index in the owner node tree. */ | |||||
| int index() const; | |||||
| blender::StringRefNull label_or_name() const; | blender::StringRefNull label_or_name() const; | ||||
| bool is_muted() const; | bool is_muted() const; | ||||
| bool is_reroute() const; | bool is_reroute() const; | ||||
| bool is_frame() const; | bool is_frame() const; | ||||
| bool is_group() const; | bool is_group() const; | ||||
| bool is_group_input() const; | bool is_group_input() const; | ||||
| bool is_group_output() const; | bool is_group_output() const; | ||||
| const blender::nodes::NodeDeclaration *declaration() const; | const blender::nodes::NodeDeclaration *declaration() const; | ||||
| ▲ Show 20 Lines • Show All 992 Lines • Show Last 20 Lines | |||||