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:
authorLukas Toenne <lukas.toenne@googlemail.com>2013-03-28 14:32:04 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-03-28 14:32:04 +0400
commit4b5be1c097513eec1c5afe95b4ff70dfa0e9f8ac (patch)
tree1bfdc61c8194db73751d9988d1da6da0648d104d /source/blender/nodes/NOD_socket.h
parentc5c34ca65f7d53abea3bead809dc282d231010ca (diff)
Fix for node groups, now exposing a socket will copy the default value from internal nodes again. Also this value can be changed in the node group Interface panel.
Diffstat (limited to 'source/blender/nodes/NOD_socket.h')
-rw-r--r--source/blender/nodes/NOD_socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/NOD_socket.h b/source/blender/nodes/NOD_socket.h
index 5f7da1c3f4d..81230456193 100644
--- a/source/blender/nodes/NOD_socket.h
+++ b/source/blender/nodes/NOD_socket.h
@@ -50,6 +50,7 @@ struct bNodeSocket *node_add_socket_from_template(struct bNodeTree *ntree, struc
void node_verify_socket_templates(struct bNodeTree *ntree, struct bNode *node);
void node_socket_init_default_value(struct bNodeSocket *sock);
+void node_socket_copy_default_value(struct bNodeSocket *to, struct bNodeSocket *from);
void register_standard_node_socket_types(void);
#endif