diff options
Diffstat (limited to '')
| -rw-r--r-- | editor/import/resource_importer_scene.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/import/resource_importer_scene.cpp b/editor/import/resource_importer_scene.cpp index 6d5ff822e..660db9ac2 100644 --- a/editor/import/resource_importer_scene.cpp +++ b/editor/import/resource_importer_scene.cpp @@ -1037,6 +1037,9 @@ Error ResourceImporterScene::import(const String &p_source_file, const String &p if (bool(p_options["animation/import"])) import_flags |= EditorSceneImporter::IMPORT_ANIMATION; + if (int(p_options["meshes/compress"])) + import_flags |= EditorSceneImporter::IMPORT_USE_COMPRESSION; + if (bool(p_options["meshes/ensure_tangents"])) import_flags |= EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS; |
