diff options
| author | ilotterytea <iltsu@alright.party> | 2024-06-09 23:25:37 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-06-09 23:25:37 +0500 |
| commit | 8833419a56c090fc357ee483556428196d26ed67 (patch) | |
| tree | ed7b412b8e10262fd203d3321770a448f909f602 /core/src/kz/ilotterytea/maxon/pets | |
| parent | abb6614122bf9eaee9b3b1aa3ac3083c74c40e48 (diff) | |
feat: fps for animated images
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/pets')
| -rw-r--r-- | core/src/kz/ilotterytea/maxon/pets/Pet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/kz/ilotterytea/maxon/pets/Pet.java b/core/src/kz/ilotterytea/maxon/pets/Pet.java index c39e77e..4b4cb00 100644 --- a/core/src/kz/ilotterytea/maxon/pets/Pet.java +++ b/core/src/kz/ilotterytea/maxon/pets/Pet.java @@ -44,7 +44,7 @@ public class Pet { regions = new TextureRegion[]{new TextureRegion(MaxonConstants.MISSING_TEXTURE)}; } - AnimatedImage icon = new AnimatedImage(regions); + AnimatedImage icon = new AnimatedImage(regions, 5); String name = game.locale.TranslatableText("pet." + id + ".name"); if (name == null) { |
