[Bf-blender-cvs] [e567a3f34ee] usd-importer-T81257-merge: USD import Mesh Read Data option description.

makowalski noreply at git.blender.org
Mon Jul 19 02:48:41 CEST 2021


Commit: e567a3f34eeb9a5e7b0c85523a1da48cd4586abf
Author: makowalski
Date:   Sun Jul 18 19:30:44 2021 -0400
Branches: usd-importer-T81257-merge
https://developer.blender.org/rBe567a3f34eeb9a5e7b0c85523a1da48cd4586abf

USD import Mesh Read Data option description.

Updated the Global Mesh Read Data Flag option
description to be more complete.

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

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 ff90e6ba7e4..f92223a7b05 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -369,7 +369,7 @@ static void wm_usd_import_draw(bContext *UNUSED(C), wmOperator *op)
 
   uiLayout *box = uiLayoutBox(layout);
   uiItemL(box, IFACE_("USD Import"), ICON_NONE);
-  uiItemL(box, IFACE_("Global Read Flag:"), ICON_NONE);
+  uiItemL(box, IFACE_("Global Mesh Read Data Flag:"), ICON_NONE);
   uiItemR(box, ptr, "global_read_flag", UI_ITEM_R_EXPAND, NULL, ICON_NONE);
   uiItemL(box, IFACE_("Manual Transform:"), ICON_NONE);
   uiItemR(box, ptr, "scale", 0, NULL, ICON_NONE);
@@ -490,7 +490,9 @@ void WM_OT_usd_import(struct wmOperatorType *ot)
                       rna_enum_usd_import_read_flags,
                       0,
                       "Flags",
-                      "Set read flag for all USD import mesh sequence cache modifiers");
+                      "Set the Read Data flag for all mesh sequence cache modifiers applied "
+                      "to imported animating meshes, specifying the cache data to read. Note "
+                      "that the UV and Color options apply to static meshes as well");
 
   /* Specify that the flag contains multiple enums. */
   RNA_def_property_flag(prop, PROP_ENUM_FLAG);



More information about the Bf-blender-cvs mailing list