Sektor-Onboarding & Charaktererstellung (Frontend)

This commit is contained in:
2026-06-07 00:53:55 +02:00
parent 18f99e896c
commit 99721bde8f
16 changed files with 858 additions and 148 deletions
+6 -3
View File
@@ -30,7 +30,7 @@ export function setupResize(refs) {
const {
background, discordContainer, logoContainer, uiContainer,
panelFrame, lobbyPixiContainer, footerBackground, footerPattern,
footerBackgroundContainer
footerBackgroundContainer, onboardingPixiContainer
} = refs;
function resize() {
@@ -133,12 +133,15 @@ export function setupResize(refs) {
sectorListContainer.style.height = `${targetMaskHeight}px`;
}
if (onboardingPixiContainer) {
onboardingPixiContainer.x = (screenWidth - 450) / 2;
onboardingPixiContainer.y = (screenHeight - 550) / 2;
}
footerBackground.height = actualFooterHeight;
footerPattern.height = actualFooterHeight;
footerBackground.width = screenWidth;
footerPattern.width = screenWidth;
footerBackgroundContainer.y = screenHeight - footerHeight;
}