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:
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 1b9192c75cf..d18fe1b81dd 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -139,6 +139,14 @@ typedef struct bNodeSocket {
char label[64];
char description[64];
+ /**
+ * The default attribute name to use for geometry nodes modifier output attribute sockets.
+ * \note Storing this pointer in every single socket exposes the bad design of using sockets
+ * to describe group inputs and outputs. In the future, it should be stored in socket
+ * declarations.
+ */
+ char *default_attribute_name;
+
/** Cached data from execution. */
void *cache;