[Bf-blender-cvs] [7ac8f61dc14] master: USD Exporter: removed 'Export' from the exporter option labels

Sybren A. Stüvel noreply at git.blender.org
Thu Jan 9 15:58:08 CET 2020


Commit: 7ac8f61dc1455e8015c7e28c48a943bbe0efc7ec
Author: Sybren A. Stüvel
Date:   Thu Jan 9 15:58:02 2020 +0100
Branches: master
https://developer.blender.org/rB7ac8f61dc1455e8015c7e28c48a943bbe0efc7ec

USD Exporter: removed 'Export' from the exporter option labels

Most options were 'Export …', now they are just '…'.
For example, 'Export UV Maps' → 'UV Maps'.

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

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 ecd8af8d5a2..67e2091e128 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -187,28 +187,25 @@ void WM_OT_usd_export(struct wmOperatorType *ot)
   RNA_def_boolean(ot->srna,
                   "export_animation",
                   false,
-                  "Export Animation",
+                  "Animation",
                   "When checked, the render frame range is exported. When false, only the current "
                   "frame is exported");
-  RNA_def_boolean(ot->srna,
-                  "export_hair",
-                  false,
-                  "Export Hair",
-                  "When checked, hair is exported as USD curves");
+  RNA_def_boolean(
+      ot->srna, "export_hair", false, "Hair", "When checked, hair is exported as USD curves");
   RNA_def_boolean(ot->srna,
                   "export_uvmaps",
                   true,
-                  "Export UV Maps",
+                  "UV Maps",
                   "When checked, all UV maps of exported meshes are included in the export");
   RNA_def_boolean(ot->srna,
                   "export_normals",
                   true,
-                  "Export Normals",
+                  "Normals",
                   "When checked, normals of exported meshes are included in the export");
   RNA_def_boolean(ot->srna,
                   "export_materials",
                   true,
-                  "Export Materials",
+                  "Materials",
                   "When checked, the viewport settings of materials are exported as USD preview "
                   "materials, and material assignments are exported as geometry subsets");



More information about the Bf-blender-cvs mailing list