[Bf-blender-cvs] [43e10e8f07d] temp-geometry-nodes-mix-attributes: Geometry Nodes: use correct category for Mix Attributes node

Jacques Lucke noreply at git.blender.org
Wed Dec 9 15:03:29 CET 2020


Commit: 43e10e8f07d51b0b0ce8038d6cf072aeebdbead7
Author: Jacques Lucke
Date:   Thu Dec 3 18:15:53 2020 +0100
Branches: temp-geometry-nodes-mix-attributes
https://developer.blender.org/rB43e10e8f07d51b0b0ce8038d6cf072aeebdbead7

Geometry Nodes: use correct category for Mix Attributes node

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_mix_attributes.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_mix_attributes.cc b/source/blender/nodes/geometry/nodes/node_geo_mix_attributes.cc
index d51fa618f4e..d188f3d5765 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_mix_attributes.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_mix_attributes.cc
@@ -168,7 +168,7 @@ void register_node_type_geo_mix_attributes()
 {
   static bNodeType ntype;
 
-  geo_node_type_base(&ntype, GEO_NODE_MIX_ATTRIBUTES, "Mix Attributes", 0, 0);
+  geo_node_type_base(&ntype, GEO_NODE_MIX_ATTRIBUTES, "Mix Attributes", NODE_CLASS_ATTRIBUTE, 0);
   node_type_socket_templates(&ntype, geo_node_mix_attributes_in, geo_node_mix_attribute_out);
   ntype.geometry_node_execute = blender::nodes::geo_node_mix_attributes_exec;
   nodeRegisterType(&ntype);



More information about the Bf-blender-cvs mailing list