feat(nds): improve fullscreen button and add volume slider

This commit is contained in:
2026-02-25 17:09:41 +01:00
parent 8c45f831a9
commit a50af98f9a
6 changed files with 91 additions and 52 deletions

View File

@@ -7,6 +7,6 @@ export const useClockTick = () => {
const s = now.getSeconds();
if (s === lastSecond) return;
lastSecond = s;
assets.audio.clockTick.play(s === 0 ? 1 : 0.7);
assets.audio.clockTick.play(s === 0 ? 2 : 1.4);
};
};