Browse Source

[godot] Fix builds < 4.3

Mario Zechner 1 năm trước cách đây
mục cha
commit
fb3d8af281

+ 10 - 4
spine-godot/spine_godot/SpineSprite.cpp

@@ -53,15 +53,21 @@
 #include "scene/main/viewport.h"
 #include "scene/main/viewport.h"
 
 
 #if TOOLS_ENABLED
 #if TOOLS_ENABLED
-#if VERSION_MAJOR > 4 && VERSION_MINOR > 2
+
+#if VERSION_MAJOR > 3
+#if VERSION_MINOR > 2
 #include "editor/plugins/editor_plugin.h"
 #include "editor/plugins/editor_plugin.h"
-else
+#else
 #include "editor/editor_plugin.h"
 #include "editor/editor_plugin.h"
 #endif
 #endif
+#else
+#include "editor/editor_plugin.h"
+#endif
+
 #endif
 #endif
 
 
-		Ref<CanvasItemMaterial>
-				SpineSprite::default_materials[4] = {};
+Ref<CanvasItemMaterial>
+		SpineSprite::default_materials[4] = {};
 static int sprite_count = 0;
 static int sprite_count = 0;
 static spine::Vector<unsigned short> quad_indices;
 static spine::Vector<unsigned short> quad_indices;
 static spine::Vector<float> scratch_vertices;
 static spine::Vector<float> scratch_vertices;