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:
authorHans Goudey <h.goudey@me.com>2021-03-25 01:09:47 +0300
committerHans Goudey <h.goudey@me.com>2021-03-25 01:09:47 +0300
commit1da326f2371ce718320c6cbef8aa2be5b86857c8 (patch)
tree044507ea6c07c3ad2f27f8fe917d517181bc4f12 /source/blender/nodes
parent4ea3d249301003e5d823bddce2962c81274556d8 (diff)
Fix, add the ability to add a "processor" grouptemp-geometry-nodes-processor-prototype
It is broken and doesn't do anything yet
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/function/nodes/node_function_common.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/nodes/function/nodes/node_function_common.cc b/source/blender/nodes/function/nodes/node_function_common.cc
index b9734f9e36c..7afd8bdac8d 100644
--- a/source/blender/nodes/function/nodes/node_function_common.cc
+++ b/source/blender/nodes/function/nodes/node_function_common.cc
@@ -26,7 +26,8 @@ void register_node_type_function_group(void)
{
static bNodeType ntype;
- node_type_base_custom(&ntype, "FunctionNodeGroup", "Group", NODE_CLASS_GROUP, 0);
+ node_type_base_custom(
+ &ntype, "FunctionNodeGroup", "Attribute Processor", NODE_CLASS_ATTRIBUTE, 0);
ntype.type = NODE_GROUP;
ntype.poll = fn_node_poll_default;
ntype.poll_instance = node_group_poll_instance;