diff --git a/data/fonts/StkFont.xml b/data/fonts/StkFont.xml index 8653367f0..9b5fa0851 100644 Binary files a/data/fonts/StkFont.xml and b/data/fonts/StkFont.xml differ diff --git a/data/shaders/bloomblend.frag b/data/shaders/bloomblend.frag index 503c9dcb9..b62030a1a 100644 --- a/data/shaders/bloomblend.frag +++ b/data/shaders/bloomblend.frag @@ -2,6 +2,8 @@ uniform sampler2D tex_128; uniform sampler2D tex_256; uniform sampler2D tex_512; +uniform sampler2D tex_dust; + out vec4 FragColor; void main() @@ -10,5 +12,13 @@ void main() vec4 col = .125 * texture(tex_128, uv); col += .25 * texture(tex_256, uv); col += .5 * texture(tex_512, uv); + + /* Lens dust effect ---- */ + vec4 col2 = texture(tex_128, uv); + col2 += col2; + col2 += col2; + //float dustMask = max(col2.r,max(col2.g,col2.b)); + col += texture(tex_dust, uv) * col2; + FragColor = vec4(col.xyz, 1.); } diff --git a/data/stk_config.xml b/data/stk_config.xml index d4fd22725..2d39f3207 100644 --- a/data/stk_config.xml +++ b/data/stk_config.xml @@ -426,7 +426,7 @@ chassis-angular-damping="0" downward-impulse-factor="5" track-connection-accel="2" - smooth-flying-impulse="25"/> + smooth-flying-impulse="250"/>