diff options
| author | ilotterytea <iltsu@alright.party> | 2024-06-01 00:51:20 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-06-01 00:51:20 +0500 |
| commit | e49f8b310d6032c99406baf04b5ec3eba0fd111f (patch) | |
| tree | 5120a1fbbf923da5ee8bc8561ed1545855aa5547 /core/src/com/ilotterytea/maxoning/anim | |
| parent | 10e9df6190ddc3f9c8dd7c86482449bec4651e0c (diff) | |
upd: moved the whole project under kz.ilotterytea.maxon name
Diffstat (limited to 'core/src/com/ilotterytea/maxoning/anim')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/anim/SpriteUtils.java | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/core/src/com/ilotterytea/maxoning/anim/SpriteUtils.java b/core/src/com/ilotterytea/maxoning/anim/SpriteUtils.java deleted file mode 100644 index c68edd8..0000000 --- a/core/src/com/ilotterytea/maxoning/anim/SpriteUtils.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.ilotterytea.maxoning.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; - } -} |
