aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--assets/shaders/dither_post_process.wgsl2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 547ad19..418737c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_dither_post_process"
-version = "0.2.0"
+version = "0.2.1"
edition = "2021"
description = "A post-process black and white ordered dithering effect for the Bevy game engine."
license = "0BSD OR MIT OR Apache-2.0"
diff --git a/assets/shaders/dither_post_process.wgsl b/assets/shaders/dither_post_process.wgsl
index 6440d0d..47f6735 100644
--- a/assets/shaders/dither_post_process.wgsl
+++ b/assets/shaders/dither_post_process.wgsl
@@ -18,7 +18,7 @@ fn fragment(
let base_color = textureSample(screen_texture, screen_sampler, in.uv);
let luma = (0.2126 * base_color.r + 0.7152 * base_color.g + 0.0722 * base_color.b);
- let value = f32(luma >= threshold);
+ let value = f32(luma > threshold);
return vec4f(value, value, value, 1.0);
}