mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +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) {
|
||||
// AnimationState status.
|
||||
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);
|
||||
if (entry == null) continue;
|
||||
status.append(i);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user