From f32113bbc8b44edb2b2b9d52732e26e4c7d7f66c Mon Sep 17 00:00:00 2001 From: Lukas Toenne Date: Sun, 4 Nov 2012 11:57:49 +0000 Subject: Node reroute cut operator update. Cutting mulitple links with for inserting reroute nodes would previously insert only one reroute node for the first cut link. Now the operator will insert a reroute node for every link in the cut line. Also, if several links share the same input/output socket, it will insert only a single reroute node, which all affected links will then share. --- source/blender/makesdna/DNA_node_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesdna/DNA_node_types.h') diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h index bebe2ba20d5..c73ba87754f 100644 --- a/source/blender/makesdna/DNA_node_types.h +++ b/source/blender/makesdna/DNA_node_types.h @@ -241,6 +241,7 @@ typedef struct bNodeLink { /* link->flag */ #define NODE_LINKFLAG_HILITE 1 /* link has been successfully validated */ #define NODE_LINK_VALID 2 +#define NODE_LINK_TEST 4 /* free test flag, undefined */ /* tree->edit_quality/tree->render_quality */ #define NTREE_QUALITY_HIGH 0 -- cgit v1.2.3