[godot] Fix 3.5 build

This commit is contained in:
Mario Zechner 2025-04-10 11:31:25 +02:00
parent f04382bacd
commit c5c71da28c

View File

@ -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
};