[Bf-blender-cvs] [af536794eb1] usd-importer-T81257-merge: More descriptive USD mesh import option names.

makowalski noreply at git.blender.org
Tue Jul 20 03:12:03 CEST 2021


Commit: af536794eb13a6b82c7cc43d1879ddd35d619af0
Author: makowalski
Date:   Mon Jul 19 19:15:27 2021 -0400
Branches: usd-importer-T81257-merge
https://developer.blender.org/rBaf536794eb13a6b82c7cc43d1879ddd35d619af0

More descriptive USD mesh import option names.

Updated the rna_enum_usd_import_read_flags
property enums with more descriptive names.

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

M	source/blender/editors/io/io_usd.c

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

diff --git a/source/blender/editors/io/io_usd.c b/source/blender/editors/io/io_usd.c
index 9a6d991bf1e..263a9b91a18 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -74,10 +74,10 @@ const EnumPropertyItem rna_enum_usd_export_evaluation_mode_items[] = {
 };
 
 const EnumPropertyItem rna_enum_usd_import_read_flags[] = {
-    {MOD_MESHSEQ_READ_VERT, "VERT", 0, "Vertex", ""},
-    {MOD_MESHSEQ_READ_POLY, "POLY", 0, "Faces", ""},
-    {MOD_MESHSEQ_READ_UV, "UV", 0, "UV", ""},
-    {MOD_MESHSEQ_READ_COLOR, "COLOR", 0, "Color", ""},
+    {MOD_MESHSEQ_READ_VERT, "VERT", 0, "Vertex Animation", ""},
+    {MOD_MESHSEQ_READ_POLY, "POLY", 0, "Face Animation", ""},
+    {MOD_MESHSEQ_READ_UV, "UV", 0, "UV Coordinates", ""},
+    {MOD_MESHSEQ_READ_COLOR, "COLOR", 0, "Mesh Color", ""},
     {0, NULL, 0, NULL, NULL},
 };



More information about the Bf-blender-cvs mailing list