blender: add patches for opencollada-1.6.68

This commit is contained in:
John 2018-12-18 15:41:21 +01:00 committed by Helmut Pozimski
parent 09057679ee
commit 0b15bc3041
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,14 @@
--- a/source/blender/collada/DocumentImporter.cpp
+++ b/source/blender/collada/DocumentImporter.cpp
@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
return anim_importer.write_animation_list(animationList);
}
+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
+{
+ return true;
+}
+
/** When this method is called, the writer must write the skin controller data.
* \return The writer should return true, if writing succeeded, false otherwise.*/
bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)

View file

@ -0,0 +1,11 @@
--- a/source/blender/collada/DocumentImporter.h.orig 2018-12-03 07:38:12 UTC
+++ b/source/blender/collada/DocumentImporter.h
@@ -107,6 +107,8 @@ public:
bool writeAnimation(const COLLADAFW::Animation*);
bool writeAnimationList(const COLLADAFW::AnimationList*);
+
+ bool writeAnimationClip( const COLLADAFW::AnimationClip* );
bool writeGeometry(const COLLADAFW::Geometry*);