Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2020-01-09 17:58:02 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-01-09 17:58:02 +0300
commit7ac8f61dc1455e8015c7e28c48a943bbe0efc7ec (patch)
treedd3c654f29876217257c618e61824960d63cffea /source/blender/editors/io/io_usd.c
parent04122c8eb257d56cf055f409d5286774cf31bbb6 (diff)
USD Exporter: removed 'Export' from the exporter option labels
Most options were 'Export …', now they are just '…'. For example, 'Export UV Maps' → 'UV Maps'.
Diffstat (limited to 'source/blender/editors/io/io_usd.c')
-rw-r--r--source/blender/editors/io/io_usd.c15
1 files changed, 6 insertions, 9 deletions
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");