mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix skybox wrong alpha (#12888)
Fix https://github.com/bevyengine/bevy/issues/12740
This commit is contained in:
parent
ac91b19118
commit
9264850a1c
1 changed files with 2 additions and 1 deletions
|
@ -72,5 +72,6 @@ fn skybox_fragment(in: VertexOutput) -> @location(0) vec4<f32> {
|
|||
let ray_direction = coords_to_ray_direction(in.position.xy, view.viewport);
|
||||
|
||||
// Cube maps are left-handed so we negate the z coordinate.
|
||||
return textureSample(skybox, skybox_sampler, ray_direction * vec3(1.0, 1.0, -1.0)) * uniforms.brightness;
|
||||
let out = textureSample(skybox, skybox_sampler, ray_direction * vec3(1.0, 1.0, -1.0));
|
||||
return vec4(out.rgb * uniforms.brightness, out.a);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue