mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-25 04:53:52 +00:00
Default normal map strength to 0.8
This commit is contained in:
parent
bec3190b08
commit
b12bc1f71e
3 changed files with 3 additions and 3 deletions
|
|
@ -645,7 +645,7 @@ private:
|
||||||
|
|
||||||
// Normal mapping / POM settings
|
// Normal mapping / POM settings
|
||||||
bool normalMappingEnabled_ = true; // on by default
|
bool normalMappingEnabled_ = true; // on by default
|
||||||
float normalMapStrength_ = 1.0f; // 0.0 = flat, 1.0 = full, 2.0 = exaggerated
|
float normalMapStrength_ = 0.8f; // 0.0 = flat, 1.0 = full, 2.0 = exaggerated
|
||||||
bool pomEnabled_ = false; // off by default (expensive)
|
bool pomEnabled_ = false; // off by default (expensive)
|
||||||
int pomQuality_ = 1; // 0=Low(16), 1=Medium(32), 2=High(64)
|
int pomQuality_ = 1; // 0=Low(16), 1=Medium(32), 2=High(64)
|
||||||
bool materialSettingsDirty_ = false; // rebuild UBOs when settings change
|
bool materialSettingsDirty_ = false; // rebuild UBOs when settings change
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@ private:
|
||||||
int pendingGroundClutterDensity = 100;
|
int pendingGroundClutterDensity = 100;
|
||||||
int pendingAntiAliasing = 0; // 0=Off, 1=2x, 2=4x, 3=8x
|
int pendingAntiAliasing = 0; // 0=Off, 1=2x, 2=4x, 3=8x
|
||||||
bool pendingNormalMapping = true; // on by default
|
bool pendingNormalMapping = true; // on by default
|
||||||
float pendingNormalMapStrength = 1.0f; // 0.0-2.0
|
float pendingNormalMapStrength = 0.8f; // 0.0-2.0
|
||||||
bool pendingPOM = false; // off by default (expensive)
|
bool pendingPOM = false; // off by default (expensive)
|
||||||
int pendingPOMQuality = 1; // 0=Low(16), 1=Medium(32), 2=High(64)
|
int pendingPOMQuality = 1; // 0=Low(16), 1=Medium(32), 2=High(64)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5970,7 +5970,7 @@ void GameScreen::renderSettingsWindow() {
|
||||||
pendingGroundClutterDensity = kDefaultGroundClutterDensity;
|
pendingGroundClutterDensity = kDefaultGroundClutterDensity;
|
||||||
pendingAntiAliasing = 0;
|
pendingAntiAliasing = 0;
|
||||||
pendingNormalMapping = true;
|
pendingNormalMapping = true;
|
||||||
pendingNormalMapStrength = 1.0f;
|
pendingNormalMapStrength = 0.8f;
|
||||||
pendingPOM = false;
|
pendingPOM = false;
|
||||||
pendingPOMQuality = 1;
|
pendingPOMQuality = 1;
|
||||||
pendingResIndex = defaultResIndex;
|
pendingResIndex = defaultResIndex;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue