From 7ac8f61dc1455e8015c7e28c48a943bbe0efc7ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 9 Jan 2020 15:58:02 +0100 Subject: USD Exporter: removed 'Export' from the exporter option labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most options were 'Export …', now they are just '…'. For example, 'Export UV Maps' → 'UV Maps'. --- source/blender/editors/io/io_usd.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'source/blender/editors/io') 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"); -- cgit v1.2.3