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-06-16 19:04:37 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-06-16 19:04:37 +0400
commit6aa524f357154fd927fff537c04c32c46611f3d0 (patch)
treeda9cc59fb29aea500454a5b819e4c52880fcb762 /source/blender/collada/DocumentImporter.cpp
parenta90d30c8638a87234048060d8fcb385369b3daaf (diff)
AnimationExporter - Quaternion to euler conversion ( in progress )
AnimationImporter - Action group assignment to bones - Revert to conversion of angles from deg to rad.
Diffstat (limited to 'source/blender/collada/DocumentImporter.cpp')
-rw-r--r--source/blender/collada/DocumentImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp
index 68fc63dfa0b..cb1d984888c 100644
--- a/source/blender/collada/DocumentImporter.cpp
+++ b/source/blender/collada/DocumentImporter.cpp
@@ -256,7 +256,7 @@ void DocumentImporter::translate_anim_recursive(COLLADAFW::Node *node, COLLADAFW
COLLADAFW::NodePointerArray &children = node->getChildNodes();
for (i = 0; i < children.getCount(); i++) {
- translate_anim_recursive(children[i], node, ob);
+ translate_anim_recursive(children[i], node, NULL);
}
}