File tree 4 files changed +6
-5
lines changed
adventure-editor/src/main/resources
blade-engine-spine-plugin
src/main/java/com/bladecoder/engine/spine
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
androidAPILevel =35
2
2
androidGradlePluginVersion =8.6.1
3
3
bladeInkVersion =1.2.0
4
- libgdxVersion =1.12.1
4
+ libgdxVersion =1.13.1-SNAPSHOT
5
5
roboVMVersion =2.3.21
6
6
version =4.3.1
Original file line number Diff line number Diff line change 25
25
26
26
dependencies {
27
27
implementation " com.badlogicgames.gdx:gdx:$libgdxVersion "
28
- implementation " com.esotericsoftware.spine:spine-libgdx:4.1.0 "
28
+ implementation " com.esotericsoftware.spine:spine-libgdx:4.2.7 "
29
29
30
30
implementation project(" :blade-engine" )
31
31
}
Original file line number Diff line number Diff line change @@ -233,7 +233,8 @@ private void updateAnimation(float time) {
233
233
234
234
cs .animation .update (time );
235
235
cs .animation .apply (cs .skeleton );
236
- cs .skeleton .updateWorldTransform ();
236
+
237
+ cs .skeleton .updateWorldTransform (Skeleton .Physics .none );
237
238
}
238
239
239
240
private static final Matrix4 tmp = new Matrix4 ();
@@ -515,7 +516,7 @@ public void computeBbox() {
515
516
}
516
517
517
518
cs .skeleton .setPosition (0 , 0 );
518
- cs .skeleton .updateWorldTransform ();
519
+ cs .skeleton .updateWorldTransform (Skeleton . Physics . none );
519
520
bounds .update (cs .skeleton , true );
520
521
521
522
if (bounds .getWidth () > 0 && bounds .getHeight () > 0 ) {
Original file line number Diff line number Diff line change 1
1
version =4.3.1
2
- libgdxVersion =1.12.1
2
+ libgdxVersion =1.13.1-SNAPSHOT
3
3
roboVMVersion =2.3.21
4
4
androidAPILevel =35
5
5
androidGradlePluginVersion =8.6.1
You can’t perform that action at this time.
0 commit comments