diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-01 23:43:39 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-01 23:43:39 +0200 |
commit | 181019cea5fcec798e6bdf58e06009373be60787 (patch) | |
tree | d42bb2b11232d2c60a2429f6d33689c62d193652 /editor/plugins | |
parent | 3f5d5a6370a5e7bd1f09ef5b4925fd2f9f9cf8e2 (diff) | |
parent | ef17c4668ad18a8732a3bccbd2474887ab394cd7 (diff) |
Merge pull request #65135 from reduz/export-customization-plugins
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/gdextension_export_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/gdextension_export_plugin.h b/editor/plugins/gdextension_export_plugin.h index b5eca46ad3..e1d68d97b5 100644 --- a/editor/plugins/gdextension_export_plugin.h +++ b/editor/plugins/gdextension_export_plugin.h @@ -36,6 +36,7 @@ class GDExtensionExportPlugin : public EditorExportPlugin { protected: virtual void _export_file(const String &p_path, const String &p_type, const HashSet<String> &p_features); + virtual String _get_name() const { return "GDExtension"; } }; void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p_type, const HashSet<String> &p_features) { |