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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-28 22:03:20 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-28 22:06:25 +0300
commitbad0ace6a0abd0c9aac809f2a43e5e2ef67bf1aa (patch)
treeb6ba53b86c0c086abc01c45a56afb085c6fc1c7e /source/blender/editors/io/io_collada.c
parentec8e8562f0f431dd8efa32ec88f946b36b272896 (diff)
Fix COLLADA build warning.
This properties does not appear to be used anymore.
Diffstat (limited to 'source/blender/editors/io/io_collada.c')
-rw-r--r--source/blender/editors/io/io_collada.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 47cf2780ac2..1b4298171fe 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -99,7 +99,6 @@ static int wm_collada_export_exec(bContext *C, wmOperator *op)
int keep_smooth_curves;
int keep_keyframes;
- int include_material_textures;
int export_animation_type;
int use_texture_copies;
int active_uv_only;
@@ -161,7 +160,6 @@ static int wm_collada_export_exec(bContext *C, wmOperator *op)
deform_bones_only = RNA_boolean_get(op->ptr, "deform_bones_only");
- include_material_textures = RNA_boolean_get(op->ptr, "include_material_textures");
use_texture_copies = RNA_boolean_get(op->ptr, "use_texture_copies");
active_uv_only = RNA_boolean_get(op->ptr, "active_uv_only");
@@ -508,9 +506,6 @@ void WM_OT_collada_export(wmOperatorType *ot)
RNA_def_boolean(func, "active_uv_only", 0, "Only Selected UV Map",
"Export only the selected UV Map");
- RNA_def_boolean(func, "include_material_textures", 0, "Include Material Textures",
- "Export textures assigned to the object Materials");
-
RNA_def_boolean(func, "use_texture_copies", 1, "Copy",
"Copy textures to same folder where the .dae file is exported");