fix cloud animation degrading after around 1000 days. fix tiny issue on emissives and block breaking effect

This commit is contained in:
Xonk
2024-05-10 12:51:13 -04:00
parent 8c5c26abde
commit 4c081608ba
3 changed files with 5 additions and 3 deletions

View File

@ -62,7 +62,7 @@ void main() {
#if defined SPIDER_EYES || defined BEACON_BEAM || defined GLOWING
if(Albedo.a < 0.102 || dot(Albedo.rgb, vec3(0.33333)) < 0.01) { discard; return; }
if(Albedo.a < 0.102 || dot(Albedo.rgb, vec3(0.33333)) < 1.0/255.0) { discard; return; }
float minimumBrightness = 0.5;