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:
authorSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-08-19 18:29:33 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-08-19 18:29:33 +0400
commitac3d785caaf272304738ecc0799c1dc9c11c3c82 (patch)
treec494511a6d5700502e88680b9ec04bcb1d744118 /source/blender/collada/AnimationExporter.cpp
parentc6465197763d9110361a795fcc6a2292790a7fc7 (diff)
Animation exporter matrix source param fix.
Diffstat (limited to 'source/blender/collada/AnimationExporter.cpp')
-rw-r--r--source/blender/collada/AnimationExporter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp
index 7bcb225e3c2..8a7d285abcb 100644
--- a/source/blender/collada/AnimationExporter.cpp
+++ b/source/blender/collada/AnimationExporter.cpp
@@ -732,7 +732,7 @@ void AnimationExporter::exportAnimations(Scene *sce)
source.setAccessorStride(16);
COLLADASW::SourceBase::ParameterNameList &param = source.getParameterNameList();
- add_source_parameters(param, semantic, false, NULL, false);
+ add_source_parameters(param, semantic, false, NULL, true);
source.prepareToAppendValues();
@@ -1123,7 +1123,8 @@ void AnimationExporter::exportAnimations(Scene *sce)
}
}
- if ( fcu) return true;
+ if ( fcu)
+ return true;
base= base->next;
}
return false;