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.h | |
parent | 6994602e4f6c3e5fbd03b0ba17eadb9d34cfcac4 (diff) |
options dict is now passed to _import_scene.
Diffstat (limited to 'modules/gltf/editor_scene_importer_gltf.h')
-rw-r--r-- | modules/gltf/editor_scene_importer_gltf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/editor_scene_importer_gltf.h b/modules/gltf/editor_scene_importer_gltf.h index dafd278f24..4410559b3d 100644 --- a/modules/gltf/editor_scene_importer_gltf.h +++ b/modules/gltf/editor_scene_importer_gltf.h @@ -47,9 +47,9 @@ class EditorSceneFormatImporterGLTF : public EditorSceneFormatImporter { public: virtual uint32_t get_import_flags() const override; virtual void get_extensions(List<String> *r_extensions) const override; - virtual Node *import_scene(const String &p_path, uint32_t p_flags, int p_bake_fps, List<String> *r_missing_deps, Error *r_err = nullptr) override; + virtual Node *import_scene(const String &p_path, uint32_t p_flags, const Map<StringName, Variant> &p_options, int p_bake_fps, List<String> *r_missing_deps, Error *r_err = nullptr) override; virtual Ref<Animation> import_animation(const String &p_path, - uint32_t p_flags, int p_bake_fps) override; + uint32_t p_flags, const Map<StringName, Variant> &p_options, int p_bake_fps) override; }; #endif // TOOLS_ENABLED #endif // EDITOR_SCENE_IMPORTER_GLTF_H |