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:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-06-22 20:16:58 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-06-22 20:16:58 +0400
commitadf3a5e33229633be9b3ea3639a1baa6596ec7ff (patch)
tree7bfe447274b86e9d91c4952b5bf765827b365ecf /source/blender/collada/collada.cpp
parent257283e030792157d24c2cd7846a92de9572b846 (diff)
Collada: (Export) Added export of surface textures, and control over exported uv layers
Diffstat (limited to 'source/blender/collada/collada.cpp')
-rw-r--r--source/blender/collada/collada.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/blender/collada/collada.cpp b/source/blender/collada/collada.cpp
index da1ca6c30c8..17be0c46cd3 100644
--- a/source/blender/collada/collada.cpp
+++ b/source/blender/collada/collada.cpp
@@ -61,6 +61,10 @@ int collada_export(Scene *sce,
int include_armatures,
int deform_bones_only,
+ int active_uv_only,
+ int include_uv_textures,
+ int use_texture_copies,
+
int use_object_instantiation,
int sort_by_name,
int second_life)
@@ -79,12 +83,16 @@ int collada_export(Scene *sce,
export_settings.filepath = (char *)filepath;
export_settings.apply_modifiers = apply_modifiers != 0;
- export_settings.export_mesh_type = export_mesh_type;
+ export_settings.export_mesh_type = export_mesh_type;
export_settings.selected = selected != 0;
export_settings.include_children = include_children != 0;
export_settings.include_armatures = include_armatures != 0;
export_settings.deform_bones_only = deform_bones_only != 0;
+ export_settings.active_uv_only = active_uv_only != 0;
+ export_settings.include_uv_textures = include_uv_textures;
+ export_settings.use_texture_copies = use_texture_copies;
+
export_settings.use_object_instantiation = use_object_instantiation != 0;
export_settings.sort_by_name = sort_by_name != 0;
export_settings.second_life = second_life != 0;