From 1c053c6a12d53e7e445692daa981f7c9b92ce6ee Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Sun, 25 Jun 2017 22:06:04 +0200 Subject: Collada: Exporter now only exports either 'Materials' or 'UV Textures as Materials'. This makes the user interface more streight --- source/blender/editors/io/io_collada.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/io') diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c index c065c8d78c8..cead08afd61 100644 --- a/source/blender/editors/io/io_collada.c +++ b/source/blender/editors/io/io_collada.c @@ -321,9 +321,8 @@ void WM_OT_collada_export(wmOperatorType *ot) }; static EnumPropertyItem prop_bc_export_texture_type[] = { - { BC_TEXTURE_TYPE_NONE, "none", 0, "No Textures", "Do not export any image based Textures" }, - { BC_TEXTURE_TYPE_UV, "uv", 0, "UV Textures", "Export UV Textures (Face textures)" }, - { BC_TEXTURE_TYPE_MAT, "mat", 0, "Material Textures", "Export Material Textures" }, + { BC_TEXTURE_TYPE_MAT, "mat", 0, "Materials", "Export Materials" }, + { BC_TEXTURE_TYPE_UV, "uv", 0, "UV Textures", "Export UV Textures (Face textures) as materials" }, { 0, NULL, 0, NULL, NULL } }; -- cgit v1.2.3