Fix ramp clipping by tightening sweep steps, disable shadows by default

Sweep step size reduced from 1.0f back to 0.65f with max 3 steps (was 2)
to prevent clipping through ramps in Stormwind. All paths updated: follow,
free-fly, and swimming.

Shadows disabled by default in renderer, settings UI, and settings defaults.
This commit is contained in:
Kelsi 2026-02-07 16:00:57 -08:00
parent fd64ca7445
commit 7c9661472f
4 changed files with 6 additions and 7 deletions

View file

@ -3425,7 +3425,7 @@ void GameScreen::renderSettingsWindow() {
constexpr int kDefaultResH = 1080;
constexpr bool kDefaultFullscreen = false;
constexpr bool kDefaultVsync = true;
constexpr bool kDefaultShadows = true;
constexpr bool kDefaultShadows = false;
constexpr int kDefaultMusicVolume = 30;
constexpr int kDefaultSfxVolume = 100;
constexpr float kDefaultMouseSensitivity = 0.2f;