mirror of https://github.com/godotengine/godot
Merge pull request #113191 from dsnopek/openxr-export-plugin-name
Fix `OpenXRExportPlugin::_get_name() must be overridden` error
This commit is contained in:
commit
b90884bcd9
|
|
@ -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<EditorExportPlatform> &p_export_platform) const override;
|
||||
virtual PackedStringArray get_android_dependencies(const Ref<EditorExportPlatform> &p_export_platform, bool p_debug) const override;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue