From b3eb6d671a8d1ff47a9ac5a4b296233914aa0cac Mon Sep 17 00:00:00 2001
From: Paolo Brasolin <paolo.brasolin@eurac.edu>
Date: Wed, 13 Apr 2022 11:44:59 +0200
Subject: [PATCH] feat: #fe adjust atmosphere duration to 15m

---
 frontend/src/js/background_scene.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/js/background_scene.ts b/frontend/src/js/background_scene.ts
index f04ef4d..1319081 100644
--- a/frontend/src/js/background_scene.ts
+++ b/frontend/src/js/background_scene.ts
@@ -81,7 +81,7 @@ export default class BackgroundScene extends Phaser.Scene {
       paused: true,
       from: 0,
       to: 255 * (COLORS.length - 1),
-      duration: 20 * 60 * 1000, // 3000 * (COLORS.length - 1),
+      duration: 15 * 60 * 1000, // 3000 * (COLORS.length - 1),
       onUpdate: (tween) => {
         const value = (tween.getValue() % 256) / 256;
         const i = Math.floor(tween.getValue() / 256);
-- 
GitLab