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>2013-03-07 03:21:52 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-03-07 03:21:52 +0400
commit8664d4b98ba6cdcde44a6878dbdf4d8327a1f96e (patch)
tree6f9ba6771a106311dc0326606f42f7b1644bdd17 /source/blender/collada/collada.h
parent65869589b6bc0caf9a08a10415a18dc563a447cf (diff)
Collada: Added option for how rot,loc,trans data is exported (improves flexibility for support of other 3D tools)
Diffstat (limited to 'source/blender/collada/collada.h')
-rw-r--r--source/blender/collada/collada.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/collada/collada.h b/source/blender/collada/collada.h
index 642259da7fc..305e5a69a31 100644
--- a/source/blender/collada/collada.h
+++ b/source/blender/collada/collada.h
@@ -41,6 +41,12 @@ typedef enum BC_export_mesh_type {
BC_MESH_TYPE_RENDER
} BC_export_mesh_type;
+typedef enum BC_export_transformation_type {
+ BC_TRANSFORMATION_TYPE_MATRIX,
+ BC_TRANSFORMATION_TYPE_TRANSROTLOC,
+ BC_TRANSFORMATION_TYPE_BOTH
+} BC_export_transformation_type;
+
struct bContext;
struct Scene;
@@ -70,6 +76,7 @@ int collada_export(Scene *sce,
int triangulate,
int use_object_instantiation,
int sort_by_name,
+ BC_export_transformation_type export_transformation_type,
int second_life);