diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-01-05 20:44:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-05 20:44:42 +0100 |
| commit | 3662105f8bd8c897caf625e44195bdfc7bdaf0f9 (patch) | |
| tree | 44d15401f31b9afeff8493758c1cfe50fb421345 /modules/gltf/editor_scene_importer_gltf.cpp | |
| parent | 8f6cba3a44aa9daa8a2694abf2d2647b03b60dc8 (diff) | |
| parent | 07a39684a046aa3a1179b7a37d8262fef19d53d2 (diff) | |
| download | redot-engine-3662105f8bd8c897caf625e44195bdfc7bdaf0f9.tar.gz | |
Merge pull request #56479 from V-Sekai/import-options
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 b4d39041da..f063cc1e2b 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; @@ -65,7 +65,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>(); } |
