[Bf-blender-cvs] [015bde61453] temp-geometry-nodes-fields: Add description for domain property

Hans Goudey noreply at git.blender.org
Wed Sep 8 16:58:16 CEST 2021


Commit: 015bde614533f1ce49514cbe8761f48d62e6c0d7
Author: Hans Goudey
Date:   Wed Sep 8 09:58:09 2021 -0500
Branches: temp-geometry-nodes-fields
https://developer.blender.org/rB015bde614533f1ce49514cbe8761f48d62e6c0d7

Add description for domain property

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

M	source/blender/makesrna/intern/rna_nodetree.c

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

diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index aa9fb410a14..b294e93310c 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -10300,7 +10300,7 @@ static void def_geo_attribute_capture(StructRNA *srna)
   prop = RNA_def_property(srna, "domain", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_items(prop, rna_enum_attribute_domain_items);
   RNA_def_property_enum_default(prop, ATTR_DOMAIN_POINT);
-  RNA_def_property_ui_text(prop, "Domain", "");
+  RNA_def_property_ui_text(prop, "Domain", "Which domain to store the data in");
   RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 }



More information about the Bf-blender-cvs mailing list