[Bf-blender-cvs] [798496233ac] temp-geometry-nodes-fields-prototype: Rename the "Attribute Fill" node to "Store Persistent Attribute"

Hans Goudey noreply at git.blender.org
Fri Aug 6 00:50:43 CEST 2021


Commit: 798496233ac2f727443b3f8fc016bf95bcbc11da
Author: Hans Goudey
Date:   Thu Aug 5 17:42:57 2021 -0500
Branches: temp-geometry-nodes-fields-prototype
https://developer.blender.org/rB798496233ac2f727443b3f8fc016bf95bcbc11da

Rename the "Attribute Fill" node to "Store Persistent Attribute"

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

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

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

diff --git a/source/blender/nodes/geometry/nodes/node_geo_attribute_fill.cc b/source/blender/nodes/geometry/nodes/node_geo_attribute_fill.cc
index faf7f2316e6..66b55fef8c6 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_attribute_fill.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_attribute_fill.cc
@@ -171,7 +171,8 @@ void register_node_type_geo_attribute_fill()
 {
   static bNodeType ntype;
 
-  geo_node_type_base(&ntype, GEO_NODE_ATTRIBUTE_FILL, "Attribute Fill", NODE_CLASS_ATTRIBUTE, 0);
+  geo_node_type_base(
+      &ntype, GEO_NODE_ATTRIBUTE_FILL, "Store Persistent Attribute", NODE_CLASS_ATTRIBUTE, 0);
   node_type_socket_templates(&ntype, geo_node_attribute_fill_in, geo_node_attribute_fill_out);
   node_type_init(&ntype, geo_node_attribute_fill_init);
   node_type_update(&ntype, geo_node_attribute_fill_update);



More information about the Bf-blender-cvs mailing list