File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11androidAPILevel =35
22androidGradlePluginVersion =8.6.1
33bladeInkVersion =1.2.0
4- libgdxVersion =1.12.1
4+ libgdxVersion =1.13.1-SNAPSHOT
55roboVMVersion =2.3.21
66version =4.3.1
Original file line number Diff line number Diff line change 2525
2626dependencies {
2727 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 "
2929
3030 implementation project(" :blade-engine" )
3131}
Original file line number Diff line number Diff line change @@ -233,7 +233,8 @@ private void updateAnimation(float time) {
233233
234234 cs .animation .update (time );
235235 cs .animation .apply (cs .skeleton );
236- cs .skeleton .updateWorldTransform ();
236+
237+ cs .skeleton .updateWorldTransform (Skeleton .Physics .none );
237238 }
238239
239240 private static final Matrix4 tmp = new Matrix4 ();
@@ -515,7 +516,7 @@ public void computeBbox() {
515516 }
516517
517518 cs .skeleton .setPosition (0 , 0 );
518- cs .skeleton .updateWorldTransform ();
519+ cs .skeleton .updateWorldTransform (Skeleton . Physics . none );
519520 bounds .update (cs .skeleton , true );
520521
521522 if (bounds .getWidth () > 0 && bounds .getHeight () > 0 ) {
Original file line number Diff line number Diff line change 11version =4.3.1
2- libgdxVersion =1.12.1
2+ libgdxVersion =1.13.1-SNAPSHOT
33roboVMVersion =2.3.21
44androidAPILevel =35
55androidGradlePluginVersion =8.6.1
You can’t perform that action at this time.
0 commit comments