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 81fe53c72f
commit 6a2ff2093f
4 changed files with 6 additions and 7 deletions

View file

@ -192,7 +192,7 @@ private:
glm::mat4 lightSpaceMatrix = glm::mat4(1.0f);
glm::vec3 shadowCenter = glm::vec3(0.0f);
bool shadowCenterInitialized = false;
bool shadowsEnabled = true;
bool shadowsEnabled = false;
public:
void setShadowsEnabled(bool enabled) { shadowsEnabled = enabled; }