Upgrade to Bevy 0.15

This commit is contained in:
Silas Bartha 2024-12-10 23:04:40 -05:00
parent 091db43227
commit fef4585b5f
4 changed files with 718 additions and 1516 deletions

2217
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,12 @@
[package]
name = "bevy_dither_post_process"
version = "0.2.1"
version = "0.3.0"
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"
repository = "https://github.com/exvacuum/bevy_dither_post_process"
repository = "https://git.exvacuum.dev/bevy_dither_post_process"
[dependencies.bevy]
version = "0.14"
version = "0.15"
default-features = false
features = ["bevy_render", "bevy_core_pipeline"]
features = ["bevy_render", "bevy_core_pipeline", "bevy_pbr", "png"]

View File

@ -21,6 +21,7 @@ bevy_dither_post_process::components::DitherPostProcessSettings::new(3, &asset_s
| Crate Version | Bevy Version |
|--- |--- |
| 0.3 | 0.15 |
| 0.2 | 0.14 |
| 0.1 | 0.13 |
@ -29,13 +30,13 @@ bevy_dither_post_process::components::DitherPostProcessSettings::new(3, &asset_s
### crates.io
```toml
[dependencies]
bevy_dither_post_process = "0.2"
bevy_dither_post_process = "0.3"
```
### Using git URL in Cargo.toml
```toml
[dependencies.bevy_dither_post_process]
git = "https://github.com/exvacuum/bevy_dither_post_process.git"
git = "https://git.exvacuum.dev/bevy_dither_post_process"
```
## Usage
@ -58,7 +59,7 @@ fn main() {
When spawning a camera:
```rs
commands.spawn((
// Camera3dBundle...
// Camera3d...
bevy_dither_post_process::components::DitherPostProcessSettings::new(level, &asset_server);
));
```

View File

@ -10,7 +10,6 @@ use bevy::{
TextureFormat, TextureSampleType,
},
renderer::RenderDevice,
texture::BevyDefault,
},
};
@ -67,6 +66,7 @@ impl FromWorld for DitherPostProcessPipeline {
write_mask: ColorWrites::ALL,
})],
}),
zero_initialize_workgroup_memory: false,
});
Self {