Switched to asset server reference for adding threshold map texture
This commit is contained in:
parent
7427c12766
commit
ccf6a082ac
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grex_dither_post_process"
|
name = "grex_dither_post_process"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies.bevy]
|
[dependencies.bevy]
|
||||||
|
@ -10,7 +10,7 @@ The effect is implemented as a bilevel ordered dither using a Bayer matrix with
|
|||||||

|

|
||||||
Configuration Used:
|
Configuration Used:
|
||||||
```rs
|
```rs
|
||||||
grex_dither_post_process::components::DitherPostProcessSettings::new(3, images);
|
grex_dither_post_process::components::DitherPostProcessSettings::new(3, &asset_server);
|
||||||
```
|
```
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ When spawning a camera:
|
|||||||
```rs
|
```rs
|
||||||
commands.spawn((
|
commands.spawn((
|
||||||
// Camera3dBundle...
|
// Camera3dBundle...
|
||||||
grex_dither_post_process::components::DitherPostProcessSettings::new(level, images);
|
grex_dither_post_process::components::DitherPostProcessSettings::new(level, &asset_server);
|
||||||
));
|
));
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -10,7 +10,10 @@ use bevy::{
|
|||||||
pub struct DitherPostProcessSettings(Handle<Image>);
|
pub struct DitherPostProcessSettings(Handle<Image>);
|
||||||
|
|
||||||
impl DitherPostProcessSettings {
|
impl DitherPostProcessSettings {
|
||||||
pub fn new(level: u32,images: &mut ResMut<Assets<Image>>) -> Self {
|
pub fn new(
|
||||||
|
level: u32,
|
||||||
|
asset_server: &AssetServer,
|
||||||
|
) -> Self {
|
||||||
let power = level + 1;
|
let power = level + 1;
|
||||||
let map_size: u32 = 1 << power;
|
let map_size: u32 = 1 << power;
|
||||||
let mut buffer = Vec::<u8>::new();
|
let mut buffer = Vec::<u8>::new();
|
||||||
@ -52,7 +55,7 @@ impl DitherPostProcessSettings {
|
|||||||
image.texture_descriptor.usage =
|
image.texture_descriptor.usage =
|
||||||
TextureUsages::COPY_DST | TextureUsages::STORAGE_BINDING | TextureUsages::TEXTURE_BINDING;
|
TextureUsages::COPY_DST | TextureUsages::STORAGE_BINDING | TextureUsages::TEXTURE_BINDING;
|
||||||
|
|
||||||
let handle = images.add(image);
|
let handle = asset_server.add(image);
|
||||||
|
|
||||||
Self(handle)
|
Self(handle)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user