make lit particles brighter

This commit is contained in:
Xonk 2023-07-17 15:47:09 -04:00
parent 9c63b077b4
commit 9e9f34fd40
4 changed files with 7 additions and 11 deletions

View File

@ -160,8 +160,13 @@ void main() {
float lightleakfix = clamp(eyeBrightnessSmooth.y/240.0,0.0,1.0);
float phase = phaseg(clamp(dot(np3, WsunVec),0.0,1.0),(1.0-gl_FragData[0].a) * 0.8 + 0.1) + 1.0 ;
vec3 Direct_lighting = DoDirectLighting(DirectLightColor, Shadows, 1.0, 0.0) * phase * lightleakfix;
vec3 Torch_Color = vec3(TORCH_R,TORCH_G,TORCH_B);
vec3 Indirect_lighting = DoAmbientLighting(AmbientLightColor, vec3(TORCH_R,TORCH_G,TORCH_B), clamp(lmtexcoord.zw,0.0,1.0), 5.0);
#ifdef LIT
Torch_Color *= 2.0;
#endif
vec3 Indirect_lighting = DoAmbientLighting(AmbientLightColor, Torch_Color, clamp(lmtexcoord.zw,0.0,1.0), 5.0);
// gl_FragData[0].a = TEXTURE.a;

View File

@ -1,7 +0,0 @@
#version 120
/* RENDERTARGETS:0 */
void main() {
discard;
}

View File

@ -1,5 +1,5 @@
#version 120
void main() {
gl_Position = ftransform();
gl_Position.xyz = vec3(-1.0);
}

View File

@ -434,6 +434,4 @@ uniform int moonPhase;
#define CompSky_G 0.0 // [0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 ]
#define CompSky_B 0.0 // [0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 ]
// #define LIGHTNING_FLASH
// #define OLD_LIGHTLEAK_FIX