mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-06 02:36:56 +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 endSuffix : endSuffixes) {
|
||||||
for (String dataSuffix : dataSuffixes) {
|
for (String dataSuffix : dataSuffixes) {
|
||||||
String suffix = startSuffix + dataSuffix + endSuffix;
|
String suffix = startSuffix + dataSuffix + endSuffix;
|
||||||
System.out.println(suffix);
|
|
||||||
if (baseName.endsWith(suffix)) {
|
if (baseName.endsWith(suffix)) {
|
||||||
FileHandle file = findAtlasFile(skeletonFile, baseName.substring(0, baseName.length() - suffix.length()));
|
FileHandle file = findAtlasFile(skeletonFile, baseName.substring(0, baseName.length() - suffix.length()));
|
||||||
if (file != null) return file;
|
if (file != null) return file;
|
||||||
@ -80,9 +79,6 @@ class SkeletonViewerAtlas extends TextureAtlas {
|
|||||||
for (String endSuffix : endSuffixes) {
|
for (String endSuffix : endSuffixes) {
|
||||||
for (String suffix : atlasSuffixes) {
|
for (String suffix : atlasSuffixes) {
|
||||||
FileHandle file = skeletonFile.sibling(baseName + startSuffix + suffix + endSuffix);
|
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;
|
if (file.exists()) return file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user