1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-05 21:06:41 +00:00

Fix bloomlinear options

This commit is contained in:
Abdu Sharif 2022-09-01 06:51:26 +00:00
parent 9f5ab540cf
commit 7344a176b5

View file

@ -11,32 +11,32 @@ uniform_float uThreshold {
min = 0.0; min = 0.0;
max = 1.0; max = 1.0;
step = 0.01; step = 0.01;
description = "#{BuiltInShaders:ThresholdLevelName}"; display_name = "#{BuiltInShaders:BloomThresholdLevelName}";
display_name = "#{BuiltInShaders:ThresholdLevelDescription}"; description = "#{BuiltInShaders:BloomThresholdLevelDescription}";
} }
uniform_float uClamp { uniform_float uClamp {
default = 1.0; default = 1.0;
min = 0.0; min = 0.0;
max = 1.0; max = 1.0;
step = 0.01; step = 0.01;
description = "#{BuiltInShaders:BloomClampLevelName}"; display_name = "#{BuiltInShaders:BloomClampLevelName}";
display_name = "#{BuiltInShaders:BloomClampLevelDescription}"; description = "#{BuiltInShaders:BloomClampLevelDescription}";
} }
uniform_float uSkyFactor { uniform_float uSkyFactor {
default = 0.5; default = 0.5;
min = 0.0; min = 0.0;
max = 2.0; max = 2.0;
step = 0.01; step = 0.01;
description = "#{BuiltInShaders:SkyFactorLevelName}"; display_name = "#{BuiltInShaders:SkyFactorLevelName}";
display_name = "#{BuiltInShaders:SkyFactorLevelDescription}"; description = "#{BuiltInShaders:SkyFactorLevelDescription}";
} }
uniform_float uRadius { uniform_float uRadius {
default = 0.5; default = 0.5;
min = 0.0; min = 0.0;
max = 1.0; max = 1.0;
step = 0.01; step = 0.01;
description = "#{BuiltInShaders:RadiusLevelName}"; display_name = "#{BuiltInShaders:RadiusLevelName}";
display_name = "#{BuiltInShaders:RadiusLevelDescription}"; description = "#{BuiltInShaders:RadiusLevelDescription}";
} }
uniform_float uStrength { uniform_float uStrength {
default = 0.25; default = 0.25;