Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_node.h
| Show First 20 Lines • Show All 611 Lines • ▼ Show 20 Lines | struct bNodeSocket *nodeInsertSocket(struct bNodeTree *ntree, | ||||
| const char *name); | const char *name); | ||||
| struct bNodeSocket *nodeAddStaticSocket(struct bNodeTree *ntree, | struct bNodeSocket *nodeAddStaticSocket(struct bNodeTree *ntree, | ||||
| struct bNode *node, | struct bNode *node, | ||||
| eNodeSocketInOut in_out, | eNodeSocketInOut in_out, | ||||
| int type, | int type, | ||||
| int subtype, | int subtype, | ||||
| const char *identifier, | const char *identifier, | ||||
| const char *name); | const char *name); | ||||
| struct bNodeSocket *nodeAddStaticSocketIfNotExists(struct bNodeTree *ntree, | |||||
| struct bNode *node, | |||||
| eNodeSocketInOut in_out, | |||||
| int type, | |||||
| int subtype, | |||||
| const char *identifier, | |||||
| const char *name); | |||||
| struct bNodeSocket *nodeInsertStaticSocket(struct bNodeTree *ntree, | struct bNodeSocket *nodeInsertStaticSocket(struct bNodeTree *ntree, | ||||
| struct bNode *node, | struct bNode *node, | ||||
| eNodeSocketInOut in_out, | eNodeSocketInOut in_out, | ||||
| int type, | int type, | ||||
| int subtype, | int subtype, | ||||
| struct bNodeSocket *next_sock, | struct bNodeSocket *next_sock, | ||||
| const char *identifier, | const char *identifier, | ||||
| const char *name); | const char *name); | ||||
| ▲ Show 20 Lines • Show All 874 Lines • ▼ Show 20 Lines | |||||
| #define GEO_NODE_CAPTURE_ATTRIBUTE 1080 | #define GEO_NODE_CAPTURE_ATTRIBUTE 1080 | ||||
| #define GEO_NODE_MATERIAL_SELECTION 1081 | #define GEO_NODE_MATERIAL_SELECTION 1081 | ||||
| #define GEO_NODE_SET_MATERIAL 1082 | #define GEO_NODE_SET_MATERIAL 1082 | ||||
| #define GEO_NODE_REALIZE_INSTANCES 1083 | #define GEO_NODE_REALIZE_INSTANCES 1083 | ||||
| #define GEO_NODE_ATTRIBUTE_STATISTIC 1084 | #define GEO_NODE_ATTRIBUTE_STATISTIC 1084 | ||||
| #define GEO_NODE_SAMPLE_CURVE 1085 | #define GEO_NODE_SAMPLE_CURVE 1085 | ||||
| #define GEO_NODE_INPUT_TANGENT 1086 | #define GEO_NODE_INPUT_TANGENT 1086 | ||||
| #define GEO_NODE_STRING_JOIN 1087 | #define GEO_NODE_STRING_JOIN 1087 | ||||
| #define GEO_NODE_CURVE_PARAMETER 1088 | #define GEO_NODE_CURVE_SPLINE_PARAMETER 1088 | ||||
| #define GEO_NODE_FILLET_CURVE 1089 | #define GEO_NODE_FILLET_CURVE 1089 | ||||
| #define GEO_NODE_DISTRIBUTE_POINTS_ON_FACES 1090 | #define GEO_NODE_DISTRIBUTE_POINTS_ON_FACES 1090 | ||||
| #define GEO_NODE_STRING_TO_CURVES 1091 | #define GEO_NODE_STRING_TO_CURVES 1091 | ||||
| #define GEO_NODE_INSTANCE_ON_POINTS 1092 | #define GEO_NODE_INSTANCE_ON_POINTS 1092 | ||||
| #define GEO_NODE_MESH_TO_POINTS 1093 | #define GEO_NODE_MESH_TO_POINTS 1093 | ||||
| #define GEO_NODE_POINTS_TO_VERTICES 1094 | #define GEO_NODE_POINTS_TO_VERTICES 1094 | ||||
| #define GEO_NODE_REVERSE_CURVE 1095 | #define GEO_NODE_REVERSE_CURVE 1095 | ||||
| #define GEO_NODE_PROXIMITY 1096 | #define GEO_NODE_PROXIMITY 1096 | ||||
| ▲ Show 20 Lines • Show All 83 Lines • Show Last 20 Lines | |||||