From 21a8d6b1bc0f875ef3afb4c1b1e0fdccc06a79cb Mon Sep 17 00:00:00 2001 From: David Snopek Date: Wed, 26 Nov 2025 08:09:18 -0600 Subject: [PATCH] Fix `OpenXRExportPlugin::_get_name() must be overridden` error --- modules/openxr/editor/openxr_editor_plugin.h | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openxr/editor/openxr_editor_plugin.h b/modules/openxr/editor/openxr_editor_plugin.h index d11e4c045ca..b034b94afab 100644 --- a/modules/openxr/editor/openxr_editor_plugin.h +++ b/modules/openxr/editor/openxr_editor_plugin.h @@ -41,6 +41,7 @@ class OpenXRExportPlugin : public EditorExportPlugin { GDCLASS(OpenXRExportPlugin, EditorExportPlugin) public: + virtual String get_name() const override { return "OpenXRExportPlugin"; } virtual bool supports_platform(const Ref &p_export_platform) const override; virtual PackedStringArray get_android_dependencies(const Ref &p_export_platform, bool p_debug) const override;