diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonBounds.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonBounds.java index 8e044977e..4bfd49e7a 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonBounds.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonBounds.java @@ -71,7 +71,14 @@ public class SkeletonBounds { } } - if (updateAabb) aabbCompute(); + if (updateAabb) + aabbCompute(); + else { + minX = Integer.MIN_VALUE; + minY = Integer.MIN_VALUE; + maxX = Integer.MAX_VALUE; + maxY = Integer.MAX_VALUE; + } } private void aabbCompute () {