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:
authorGaia Clary <gaia.clary@machinimatrix.org>2018-02-26 18:49:06 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2018-02-26 19:18:31 +0300
commit7dd0e36dc4582e57a3f5235f384b5207882c923e (patch)
tree5d2335cf3e1fe59e7431056f42a9959f511ec37d /source/blender/collada/collada.cpp
parenta024da55af09fb75e3b72489a8696878909bf676 (diff)
simplified collada integration in Blender. made functions mostly similar with blender2.8
Diffstat (limited to 'source/blender/collada/collada.cpp')
-rw-r--r--source/blender/collada/collada.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/collada/collada.cpp b/source/blender/collada/collada.cpp
index 9605dae275b..7f723aae710 100644
--- a/source/blender/collada/collada.cpp
+++ b/source/blender/collada/collada.cpp
@@ -67,7 +67,8 @@ int collada_import(bContext *C,
return 0;
}
-int collada_export(Scene *sce,
+int collada_export(EvaluationContext *eval_ctx,
+ Scene *sce,
const char *filepath,
int apply_modifiers,
@@ -143,7 +144,7 @@ int collada_export(Scene *sce,
}
DocumentExporter exporter(&export_settings);
- int status = exporter.exportCurrentScene(sce);
+ int status = exporter.exportCurrentScene(eval_ctx, sce);
BLI_linklist_free(export_settings.export_set, NULL);