From 464e9b3362182116eacb3a08b56e485bbe7289d8 Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Fri, 2 Jun 2017 00:09:59 +0200 Subject: [PATCH] [libgdx] Removed sysouts. Dang amateurs! --- .../src/com/esotericsoftware/spine/Animation.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java index 9959bba1e..0e50083dd 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java @@ -908,7 +908,6 @@ public class Animation { if (alpha == 1) { // Vertex positions or deform offsets, no alpha. - System.out.println(1); for (int i = 0; i < vertexCount; i++) { float prev = prevVertices[i]; vertices[i] = prev + (nextVertices[i] - prev) * percent; @@ -917,7 +916,6 @@ public class Animation { VertexAttachment vertexAttachment = (VertexAttachment)slotAttachment; if (vertexAttachment.getBones() == null) { // Unweighted vertex positions, with alpha. - System.out.println(2); float[] setupVertices = vertexAttachment.getVertices(); for (int i = 0; i < vertexCount; i++) { float prev = prevVertices[i], setup = setupVertices[i]; @@ -925,7 +923,6 @@ public class Animation { } } else { // Weighted deform offsets, with alpha. - System.out.println(3); for (int i = 0; i < vertexCount; i++) { float prev = prevVertices[i]; vertices[i] = (prev + (nextVertices[i] - prev) * percent) * alpha; @@ -933,7 +930,6 @@ public class Animation { } } else { // Vertex positions or deform offsets, with alpha. - System.out.println(4); for (int i = 0; i < vertexCount; i++) { float prev = prevVertices[i]; vertices[i] += (prev + (nextVertices[i] - prev) * percent - vertices[i]) * alpha;