diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-13 16:59:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-13 16:59:43 +0200 |
commit | 0a67ee52d16bb245271a136b0fa801b129b1d729 (patch) | |
tree | 11b530dcf1d421c6a927822a74b1027a6032cb6d /modules/gdscript/gdscript.h | |
parent | de196227e17126fa18716c4ed8e61108584116dc (diff) | |
download | redot-engine-0a67ee52d16bb245271a136b0fa801b129b1d729.tar.gz |
Revert "GDScript: Implement get_dependencies()"
This reverts commit dc73440f899e6f32de748787e946ad762771fda0.
This commit in some form is needed to fix handling of dependencies on
export, but as it's also used for import, it's exposing some pre-existing
issues which we need to solve first.
So reverting for now to give ourselves time to iron this out for a future
Godot release.
Fixes #91726.
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index f63b0da745..728459de44 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -638,7 +638,7 @@ public: virtual void get_recognized_extensions(List<String> *p_extensions) const override; virtual bool handles_type(const String &p_type) const override; virtual String get_resource_type(const String &p_path) const override; - virtual void get_dependencies(const String &p_path, List<String> *r_dependencies, bool p_add_types = false) override; + virtual void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false) override; }; class ResourceFormatSaverGDScript : public ResourceFormatSaver { |