summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea/maxon/anim
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/anim')
-rw-r--r--core/src/kz/ilotterytea/maxon/anim/SpriteUtils.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/core/src/kz/ilotterytea/maxon/anim/SpriteUtils.java b/core/src/kz/ilotterytea/maxon/anim/SpriteUtils.java
new file mode 100644
index 0000000..3bc5712
--- /dev/null
+++ b/core/src/kz/ilotterytea/maxon/anim/SpriteUtils.java
@@ -0,0 +1,31 @@
+package kz.ilotterytea.maxon.anim;
+
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.TextureRegion;
+
+import java.util.Arrays;
+
+public class SpriteUtils {
+ public static TextureRegion[] splitToTextureRegions(
+ Texture texture,
+ int tileWidth,
+ int tileHeight,
+ int columns,
+ int rows
+ ) {
+ TextureRegion[][] tmp = TextureRegion.split(texture, tileWidth, tileHeight);
+ TextureRegion[] frames = new TextureRegion[(texture.getWidth() / columns) + (texture.getHeight() / rows)];
+
+ int index = 0;
+
+ for (TextureRegion[] regArray : tmp) {
+ for (TextureRegion reg : regArray) {
+ if (reg != null) {
+ frames[index++] = reg;
+ }
+ }
+ }
+
+ return frames;
+ }
+}