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:
authorCharlie Jolly <charlie>2020-02-11 18:31:40 +0300
committerCharlie Jolly <mistajolly@gmail.com>2020-02-11 19:09:25 +0300
commit7b0aca2a530fb1a42367eebf595a1c6ca93dba7d (patch)
treef439158ad17e09591daba9ae10c6a3a9f83ed531 /source/blender/makesdna
parent64e65442a1857033a9f139893eaff56b53cbd667 (diff)
Nodes: Add dynamic label support for Math Nodes
Reviewed By: brecht Differential Revision: https://developer.blender.org/D6375
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 22202717b0c..559048ab8cf 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -116,6 +116,9 @@ typedef struct bNodeSocket {
char display_shape;
char _pad[3];
+ /** Custom dynamic defined label, MAX_NAME. */
+ char label[64];
+
/** Cached data from execution. */
void *cache;