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/fbx/editor_scene_importer_fbx.h | |
parent | 6994602e4f6c3e5fbd03b0ba17eadb9d34cfcac4 (diff) |
options dict is now passed to _import_scene.
Diffstat (limited to 'modules/fbx/editor_scene_importer_fbx.h')
-rw-r--r-- | modules/fbx/editor_scene_importer_fbx.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/fbx/editor_scene_importer_fbx.h b/modules/fbx/editor_scene_importer_fbx.h index a6ea8058a7..eebcb86409 100644 --- a/modules/fbx/editor_scene_importer_fbx.h +++ b/modules/fbx/editor_scene_importer_fbx.h @@ -127,7 +127,10 @@ public: virtual void get_extensions(List<String> *r_extensions) const override; virtual uint32_t get_import_flags() const override; - virtual Node3D *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 Node3D *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, const Map<StringName, Variant> &p_options, + int p_bake_fps) override; }; #endif // TOOLS_ENABLED |