From c5c71da28cef12fcb0830b96923ad0b401b82e03 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 10 Apr 2025 11:31:25 +0200 Subject: [PATCH] [godot] Fix 3.5 build --- spine-godot/spine_godot/SpineEditorPlugin.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spine-godot/spine_godot/SpineEditorPlugin.h b/spine-godot/spine_godot/SpineEditorPlugin.h index 54a2592f7..56e7510b0 100644 --- a/spine-godot/spine_godot/SpineEditorPlugin.h +++ b/spine-godot/spine_godot/SpineEditorPlugin.h @@ -290,11 +290,14 @@ public: #else explicit SpineEditorPlugin(EditorNode *node); +#if VERSION_MAJOR > 3 #if VERSION_MINOR > 3 String get_plugin_name() const override { return "SpineEditorPlugin"; } #else String get_name() const override { return "SpineEditorPlugin"; } #endif +#else + String get_name() const override { return "SpineEditorPlugin"; } #endif };