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/AnimationClipExporter.h')
-rw-r--r--source/blender/collada/AnimationClipExporter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/collada/AnimationClipExporter.h b/source/blender/collada/AnimationClipExporter.h
index d76a3fa1380..8a9394ce88a 100644
--- a/source/blender/collada/AnimationClipExporter.h
+++ b/source/blender/collada/AnimationClipExporter.h
@@ -38,13 +38,13 @@ private:
public:
AnimationClipExporter(Depsgraph *depsgraph , COLLADASW::StreamWriter *sw, const ExportSettings *export_settings, std::vector<std::vector<std::string>> anim_meta) :
- depsgraph(depsgraph),
COLLADASW::LibraryAnimationClips(sw),
+ depsgraph(depsgraph),
+ scene(nullptr),
+ sw(sw),
export_settings(export_settings),
anim_meta(anim_meta)
- {
- this->sw = sw;
- }
+ {}
void exportAnimationClips(Scene *sce);
};