McbeEringi / esbe-2g

A shader for Minecraft Bedrock
https://mcbeeringi.github.io/esbe-2g
122 stars 8 forks source link

Improve the inner lightning (Too Yellow) #13

Open XxChrisxX0 opened 4 years ago

XxChrisxX0 commented 4 years ago

The Shaders are wonderful, the thing is that when you put a light in a inner room without sunlight, the color of the light is too yellow, there are thing like sealantern or a beacon that when you put it in a closed place without light, gives too warm lights that for someones looks weird.

Would be nice if the light could be as white as it looks in the water, that looks like a more natural light.

bennydiamond commented 4 years ago

I find indoor lighting to be indeed too yellow. I wish the dev would point where I could modify it on my own to reduce that yellow tint.

McbeEringi commented 4 years ago

shaders>glsl>terrain.fsh(line152) "/屋内/vec3(1.2,1.1,1.0)" shaders>hlsl>terrain.fsh.hlsl(line133) "/屋内/float3(1.2,1.1,1.0)" is the indoor tinting parameters.

bfiset commented 4 years ago

Thank you! I guess these are ordered as R,G,B components?

McbeEringi commented 4 years ago

Yes but It's a little tricky. Greater than 1.0 will be brighter smaller than that will be darker. If you want to change ALL light source color, change shaders>glsl>terrain.fs(line160) "vec3(1.0,0.65,0.3);" shaders>hlsl>terrain.fsh.hls(line141) "float3(1.0,0.65,0.3);" Please specify normalized RGB here.