Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 178 Lines • ▼ Show 20 Lines | typedef enum eNodeSocketFlag { | ||||
| // SOCK_INTERNAL = (1 << 5), | // SOCK_INTERNAL = (1 << 5), | ||||
| /** socket collapsed in UI */ | /** socket collapsed in UI */ | ||||
| SOCK_COLLAPSED = (1 << 6), | SOCK_COLLAPSED = (1 << 6), | ||||
| /** hide socket value, if it gets auto default */ | /** hide socket value, if it gets auto default */ | ||||
| SOCK_HIDE_VALUE = (1 << 7), | SOCK_HIDE_VALUE = (1 << 7), | ||||
| /** socket hidden automatically, to distinguish from manually hidden */ | /** socket hidden automatically, to distinguish from manually hidden */ | ||||
| SOCK_AUTO_HIDDEN__DEPRECATED = (1 << 8), | SOCK_AUTO_HIDDEN__DEPRECATED = (1 << 8), | ||||
| SOCK_NO_INTERNAL_LINK = (1 << 9), | SOCK_NO_INTERNAL_LINK = (1 << 9), | ||||
| /** Draw socket in a more compact form. */ | |||||
| SOCK_COMPACT = (1 << 10), | |||||
| } eNodeSocketFlag; | } eNodeSocketFlag; | ||||
| /* limit data in bNode to what we want to see saved? */ | /* limit data in bNode to what we want to see saved? */ | ||||
| typedef struct bNode { | typedef struct bNode { | ||||
| struct bNode *next, *prev, *new_node; | struct bNode *next, *prev, *new_node; | ||||
| /** User-defined properties. */ | /** User-defined properties. */ | ||||
| IDProperty *prop; | IDProperty *prop; | ||||
| ▲ Show 20 Lines • Show All 1,075 Lines • Show Last 20 Lines | |||||