summaryrefslogtreecommitdiffstats
path: root/editor/import/resource_importer_obj.h
diff options
context:
space:
mode:
authorK. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>2021-12-13 21:34:18 -0800
committerLyuma <xn.lyuma@gmail.com>2022-01-05 01:07:54 -0800
commit07a39684a046aa3a1179b7a37d8262fef19d53d2 (patch)
tree538ecde718f51740c510ebe15cc5fec3e76823cb /editor/import/resource_importer_obj.h
parent6994602e4f6c3e5fbd03b0ba17eadb9d34cfcac4 (diff)
downloadredot-engine-07a39684a046aa3a1179b7a37d8262fef19d53d2.tar.gz
options dict is now passed to _import_scene.
Diffstat (limited to 'editor/import/resource_importer_obj.h')
-rw-r--r--editor/import/resource_importer_obj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/import/resource_importer_obj.h b/editor/import/resource_importer_obj.h
index 6f1acc26fa..d7e3f0209d 100644
--- a/editor/import/resource_importer_obj.h
+++ b/editor/import/resource_importer_obj.h
@@ -39,8 +39,8 @@ class EditorOBJImporter : 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 Ref<Animation> import_animation(const String &p_path, uint32_t p_flags, int p_bake_fps) 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, const Map<StringName, Variant> &p_options, int p_bake_fps) override;
EditorOBJImporter();
};