[Bf-blender-cvs] [62c1b33f5e7] master: PyAPI Docs: Clarifiy vertex group index list paramater

Aaron Carlisle noreply at git.blender.org
Fri Feb 19 05:13:46 CET 2021


Commit: 62c1b33f5e790f9ec5b1ae64e0708ca1161a5bdf
Author: Aaron Carlisle
Date:   Thu Feb 18 23:13:30 2021 -0500
Branches: master
https://developer.blender.org/rB62c1b33f5e790f9ec5b1ae64e0708ca1161a5bdf

PyAPI Docs: Clarifiy vertex group index list paramater

See T77920

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

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

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

diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 01057ebaa07..8affee730ba 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2128,7 +2128,7 @@ static void rna_def_vertex_group(BlenderRNA *brna)
   RNA_def_function_ui_description(func, "Add vertices to the group");
   RNA_def_function_flag(func, FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
   /* TODO, see how array size of 0 works, this shouldn't be used */
-  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "Index List", 0, 0);
+  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "List of indices", 0, 0);
   RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
   parm = RNA_def_float(func, "weight", 0, 0.0f, 1.0f, "", "Vertex weight", 0.0f, 1.0f);
   RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
@@ -2139,7 +2139,7 @@ static void rna_def_vertex_group(BlenderRNA *brna)
   RNA_def_function_ui_description(func, "Remove a vertex from the group");
   RNA_def_function_flag(func, FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
   /* TODO, see how array size of 0 works, this shouldn't be used */
-  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "Index List", 0, 0);
+  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "List of indices", 0, 0);
   RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
 
   func = RNA_def_function(srna, "weight", "rna_VertexGroup_weight");
@@ -2186,14 +2186,14 @@ static void rna_def_face_map(BlenderRNA *brna)
   RNA_def_function_ui_description(func, "Add vertices to the group");
   RNA_def_function_flag(func, FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
   /* TODO, see how array size of 0 works, this shouldn't be used */
-  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "Index List", 0, 0);
+  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "List of indices", 0, 0);
   RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
 
   func = RNA_def_function(srna, "remove", "rna_FaceMap_face_remove");
   RNA_def_function_ui_description(func, "Remove a vertex from the group");
   RNA_def_function_flag(func, FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
   /* TODO, see how array size of 0 works, this shouldn't be used */
-  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "Index List", 0, 0);
+  parm = RNA_def_int_array(func, "index", 1, NULL, 0, 0, "", "List of indices", 0, 0);
   RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
 }



More information about the Bf-blender-cvs mailing list