Skip to content

Commit

Permalink
HOTFIX: Use nearest filtering for transmission
Browse files Browse the repository at this point in the history
  • Loading branch information
coreh committed Sep 17, 2024
1 parent f063207 commit 2eb9a99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_core_pipeline/src/core_3d/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,8 +762,8 @@ pub fn prepare_core_3d_transmission_textures(

let sampler = render_device.create_sampler(&SamplerDescriptor {
label: Some("view_transmission_sampler"),
mag_filter: FilterMode::Linear,
min_filter: FilterMode::Linear,
mag_filter: FilterMode::Nearest,
min_filter: FilterMode::Nearest,
..Default::default()
});

Expand Down

0 comments on commit 2eb9a99

Please sign in to comment.