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
All checks were successful
Dynamic Branch Deploy / build-and-deploy (push) Successful in 2m23s
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user