[Bf-blender-cvs] [26f98446b17] master: fix T52831 removed enforcement of matrix decomposition when animations are exported

Gaia Clary noreply at git.blender.org
Thu Sep 21 00:07:44 CEST 2017


Commit: 26f98446b17f418a633a1420a491e5ad0b59b988
Author: Gaia Clary
Date:   Thu Sep 21 00:06:11 2017 +0200
Branches: master
https://developer.blender.org/rB26f98446b17f418a633a1420a491e5ad0b59b988

fix T52831 removed enforcement of matrix decomposition when animations are exported

===================================================================

M	source/blender/collada/DocumentExporter.cpp

===================================================================

diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp
index 634071bc90f..dcfd062470c 100644
--- a/source/blender/collada/DocumentExporter.cpp
+++ b/source/blender/collada/DocumentExporter.cpp
@@ -305,7 +305,10 @@ int DocumentExporter::exportCurrentScene(Scene *sce)
 	// <library_visual_scenes>
 
 	SceneExporter se(writer, &arm_exporter, this->export_settings);
-
+#if 0
+	/* The following code seems to be an obsolete workaround
+	   Comment out until it proofs correct that we no longer need it.
+	*/
 	if (has_animations && this->export_settings->export_transformation_type == BC_TRANSFORMATION_TYPE_MATRIX) {
 		// channels adressing <matrix> objects is not (yet) supported
 		// So we force usage of <location>, <translation> and <scale>
@@ -317,7 +320,9 @@ int DocumentExporter::exportCurrentScene(Scene *sce)
 	else {
 		se.setExportTransformationType(this->export_settings->export_transformation_type);
 	}
-
+#else
+	se.setExportTransformationType(this->export_settings->export_transformation_type);
+#endif
 	se.exportScene(sce);
 	
 	// <scene>



More information about the Bf-blender-cvs mailing list