temporary fix for particles breaking (resourcepack sky related)

This commit is contained in:
Xonk
2025-03-22 21:38:01 -04:00
parent 04f9d47b25
commit 034a7ad19e
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ float interleaved_gradientNoise(){
//////////////////////////////VOID MAIN//////////////////////////////
//////////////////////////////VOID MAIN//////////////////////////////
#if RESOURCEPACK_SKY != 0
/* RENDERTARGETS:1,2 */
#endif
void main() {

View File

@ -48,7 +48,7 @@ void main() {
vec3 NEWCOLOR = COLOR.rgb;
if(isSun) NEWCOLOR.rgb = COLOR.rgb * 10.0;
if(isMoon) NEWCOLOR.rgb = COLOR.rgb * 10.0;
if(isMoon) NEWCOLOR.rgb = COLOR.rgb * 5.0;
if(isSkyBox) NEWCOLOR.rgb = COLOR.rgb * 2.0;
NEWCOLOR.rgb = toLinear(NEWCOLOR.rgb);