summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea/maxon/pets
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-06-09 23:25:37 +0500
committerilotterytea <iltsu@alright.party>2024-06-09 23:25:37 +0500
commit8833419a56c090fc357ee483556428196d26ed67 (patch)
treeed7b412b8e10262fd203d3321770a448f909f602 /core/src/kz/ilotterytea/maxon/pets
parentabb6614122bf9eaee9b3b1aa3ac3083c74c40e48 (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.java2
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) {