[libgdx] Fix example, prepare for Maven release

This commit is contained in:
Mario Zechner 2024-04-16 15:39:17 +02:00
parent 072c2c0965
commit 26d9dee67c
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
group = "com.esotericsoftware.spine"
version = "4.1.0"
version = "4.2.0"
ext {
libgdxVersion = "1.11.1-SNAPSHOT"
libgdxVersion = "1.12.1"
javaVersion = 8
}

View File

@ -69,7 +69,7 @@ public class PhysicsTest extends ApplicationAdapter {
AnimationStateData stateData = new AnimationStateData(skeletonData); // Defines mixing (crossfading) between animations.
state = new AnimationState(stateData); // Holds the animation state for a skeleton (current animation, time, etc).
state.setAnimation(0, "FOA", true);
state.setAnimation(0, "walk", true);
}
public void render () {