Private
Public Access
1
0

Add analog joystick support with fine control adjustments, improve prediction smoothing, reduce correction thresholds, and enhance lobby and overlay UI responsiveness.
All checks were successful
Dynamic Branch Deploy / build-and-deploy (push) Successful in 2m23s

This commit is contained in:
Sebastian Unterschütz
2026-01-04 19:43:09 +01:00
parent 6606d67a21
commit 98e955aad9
6 changed files with 164 additions and 48 deletions

View File

@@ -34,6 +34,13 @@ function setUIState(newState) {
screen.classList.add('hidden');
});
if (loadingScreen) loadingScreen.style.display = 'none';
// Scroll alle overlay-screens nach oben
setTimeout(() => {
document.querySelectorAll('.overlay-screen:not(.hidden)').forEach(screen => {
screen.scrollTop = 0;
});
}, 10);
// Manage Canvas and Overlays based on state
switch(newState) {