feat(intro): play home intro once in the intro screen instead of having weird boolean in app store

This commit is contained in:
2026-01-14 11:59:13 +01:00
parent a044d87977
commit fd06c031d4
8 changed files with 23 additions and 33 deletions

View File

@@ -27,6 +27,9 @@ onRender((ctx) => {
const frame = assets.images.intro.logoAnimated[frameKey];
frame.draw(ctx, 0, 0);
ctx.globalAlpha = store.isOutro ? store.outro.backgroundOpacity : 0;
assets.images.home.topScreen.background.draw(ctx, 0, 0);
});
</script>