mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[libgdx] SkeletonViewerAtlas, removed debug output.
This commit is contained in:
parent
ee3c6aff3c
commit
06ac2ca28a
@ -64,7 +64,6 @@ class SkeletonViewerAtlas extends TextureAtlas {
|
||||
for (String endSuffix : endSuffixes) {
|
||||
for (String dataSuffix : dataSuffixes) {
|
||||
String suffix = startSuffix + dataSuffix + endSuffix;
|
||||
System.out.println(suffix);
|
||||
if (baseName.endsWith(suffix)) {
|
||||
FileHandle file = findAtlasFile(skeletonFile, baseName.substring(0, baseName.length() - suffix.length()));
|
||||
if (file != null) return file;
|
||||
@ -80,9 +79,6 @@ class SkeletonViewerAtlas extends TextureAtlas {
|
||||
for (String endSuffix : endSuffixes) {
|
||||
for (String suffix : atlasSuffixes) {
|
||||
FileHandle file = skeletonFile.sibling(baseName + startSuffix + suffix + endSuffix);
|
||||
System.out.println(baseName + startSuffix + suffix + endSuffix);
|
||||
if (file.exists())
|
||||
System.out.println();
|
||||
if (file.exists()) return file;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user