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:
Diffstat (limited to 'source/blender/collada/AnimationExporter.h')
-rw-r--r--source/blender/collada/AnimationExporter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/collada/AnimationExporter.h b/source/blender/collada/AnimationExporter.h
index a50bcaf0ef4..67468458f81 100644
--- a/source/blender/collada/AnimationExporter.h
+++ b/source/blender/collada/AnimationExporter.h
@@ -84,6 +84,7 @@ struct Depsgraph;
class AnimationExporter: COLLADASW::LibraryAnimations
{
private:
+ Main *m_bmain;
Scene *scene;
Depsgraph *depsgraph;
COLLADASW::StreamWriter *sw;
@@ -98,7 +99,8 @@ public:
this->sw = sw;
}
- bool exportAnimations(Scene *sce);
+ bool exportAnimations(Main *bmain, Scene *sce);
+
// called for each exported object
void operator() (Object *ob);