From 99f75a03ae95b750ea4b757002ca29553b72cca1 Mon Sep 17 00:00:00 2001 From: Mal Date: Wed, 4 Sep 2024 17:23:02 +0200 Subject: [PATCH] Smoother sleep animations for Giesela --- js/Gisela.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/Gisela.js b/js/Gisela.js index 3dbb08b..28c7887 100644 --- a/js/Gisela.js +++ b/js/Gisela.js @@ -17,11 +17,11 @@ export default class Gisela extends Movable ); this.addAnimation( 'SLEEP_LEFT', - new RetroAnimation(Setting.GRAPHICS_LOCATION + 'giesela-left-sleeping.png', 4, SCALE, 4) + new RetroAnimation(Setting.GRAPHICS_LOCATION + 'giesela-left-sleeping.png', 4, SCALE, 6) ); this.addAnimation( 'SLEEP_RIGHT', - new RetroAnimation(Setting.GRAPHICS_LOCATION + 'giesela-right-sleeping.png', 4, SCALE, 4) + new RetroAnimation(Setting.GRAPHICS_LOCATION + 'giesela-right-sleeping.png', 4, SCALE, 6) ); } }