diff options
| author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2021-12-13 21:34:18 -0800 |
|---|---|---|
| committer | Lyuma <xn.lyuma@gmail.com> | 2022-01-05 01:07:54 -0800 |
| commit | 07a39684a046aa3a1179b7a37d8262fef19d53d2 (patch) | |
| tree | 538ecde718f51740c510ebe15cc5fec3e76823cb /modules/gltf/editor_scene_importer_gltf.cpp | |
| parent | 6994602e4f6c3e5fbd03b0ba17eadb9d34cfcac4 (diff) | |
| download | redot-engine-07a39684a046aa3a1179b7a37d8262fef19d53d2.tar.gz | |
options dict is now passed to _import_scene.
Diffstat (limited to 'modules/gltf/editor_scene_importer_gltf.cpp')
| -rw-r--r-- | modules/gltf/editor_scene_importer_gltf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/editor_scene_importer_gltf.cpp b/modules/gltf/editor_scene_importer_gltf.cpp index ef1ba14001..018413eaeb 100644 --- a/modules/gltf/editor_scene_importer_gltf.cpp +++ b/modules/gltf/editor_scene_importer_gltf.cpp @@ -48,7 +48,7 @@ void EditorSceneFormatImporterGLTF::get_extensions(List<String> *r_extensions) c } Node *EditorSceneFormatImporterGLTF::import_scene(const String &p_path, - uint32_t p_flags, int p_bake_fps, + uint32_t p_flags, const Map<StringName, Variant> &p_options, int p_bake_fps, List<String> *r_missing_deps, Error *r_err) { Ref<GLTFDocument> doc; @@ -57,7 +57,7 @@ Node *EditorSceneFormatImporterGLTF::import_scene(const String &p_path, } Ref<Animation> EditorSceneFormatImporterGLTF::import_animation(const String &p_path, - uint32_t p_flags, + uint32_t p_flags, const Map<StringName, Variant> &p_options, int p_bake_fps) { return Ref<Animation>(); } |
