[Bf-blender-cvs] [78a77fe622b] master: fix: unintentionally commented out collada animation export

Gaia Clary noreply at git.blender.org
Fri Feb 2 00:49:54 CET 2018


Commit: 78a77fe622b86fb9b477d10533729a7889b3e115
Author: Gaia Clary
Date:   Fri Feb 2 00:49:32 2018 +0100
Branches: master
https://developer.blender.org/rB78a77fe622b86fb9b477d10533729a7889b3e115

fix: unintentionally commented out collada animation export

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

M	source/blender/collada/DocumentExporter.cpp

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

diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp
index 284a6da1a40..3c938f6b6cb 100644
--- a/source/blender/collada/DocumentExporter.cpp
+++ b/source/blender/collada/DocumentExporter.cpp
@@ -301,15 +301,15 @@ 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.
-	*/
 
 	// <library_animations>
 	AnimationExporter ae(writer, this->export_settings);
 	bool has_animations = ae.exportAnimations(sce);
 
+#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>



More information about the Bf-blender-cvs mailing list