From 8664d4b98ba6cdcde44a6878dbdf4d8327a1f96e Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Wed, 6 Mar 2013 23:21:52 +0000 Subject: Collada: Added option for how rot,loc,trans data is exported (improves flexibility for support of other 3D tools) --- source/blender/collada/collada.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source/blender/collada/collada.h') 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); -- cgit v1.2.3