mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
[libgdx] SkeletonViewer, display track percentages with lowest at bottom.
This commit is contained in:
parent
08694b37b3
commit
d9e39c2866
@ -340,7 +340,7 @@ public class SkeletonViewer extends ApplicationAdapter {
|
|||||||
if (state != null) {
|
if (state != null) {
|
||||||
// AnimationState status.
|
// AnimationState status.
|
||||||
status.setLength(0);
|
status.setLength(0);
|
||||||
for (int i = 0, n = state.getTracks().size; i < n; i++) {
|
for (int i = state.getTracks().size - 1; i >= 0; i--) {
|
||||||
TrackEntry entry = state.getTracks().get(i);
|
TrackEntry entry = state.getTracks().get(i);
|
||||||
if (entry == null) continue;
|
if (entry == null) continue;
|
||||||
status.append(i);
|
status.append(i);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user