Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-12-19 02:08:22 +0300
committerTon Roosendaal <ton@blender.org>2005-12-19 02:08:22 +0300
commitbe0b59ea6dbdf9e63a83edeae1505ebb9aa0ad50 (patch)
tree84341bf4482e243a41edbd02754e83a5e05375c1 /source/blender/makesdna/DNA_node_types.h
parent87d9ca4b992911f1bc896f63eac28bd69d4344ae (diff)
Orange; update commit on WIP project for Noodle editing. :)
- Grabbing works (Gkey) or tweak (LMB) or use RMB click-drag for grab - Shift+d works - Akey: select all - Drawing links works too now!
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 2b54b434624..9b404b230b2 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -69,7 +69,8 @@ typedef struct bNode {
typedef struct bNodeLink {
struct bNodeLink *next, *prev;
- bNode *from, *to;
+ bNode *fromnode, *tonode;
+ bNodeSocket *fromsock, *tosock;
} bNodeLink;