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] [package]
name = "bevy_dither_post_process" name = "bevy_dither_post_process"
version = "0.2.1" version = "0.3.0"
edition = "2021" edition = "2021"
description = "A post-process black and white ordered dithering effect for the Bevy game engine." description = "A post-process black and white ordered dithering effect for the Bevy game engine."
license = "0BSD OR MIT OR Apache-2.0" 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] [dependencies.bevy]
version = "0.14" version = "0.15"
default-features = false 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 | | Crate Version | Bevy Version |
|--- |--- | |--- |--- |
| 0.3 | 0.15 |
| 0.2 | 0.14 | | 0.2 | 0.14 |
| 0.1 | 0.13 | | 0.1 | 0.13 |
@ -29,13 +30,13 @@ bevy_dither_post_process::components::DitherPostProcessSettings::new(3, &asset_s
### crates.io ### crates.io
```toml ```toml
[dependencies] [dependencies]
bevy_dither_post_process = "0.2" bevy_dither_post_process = "0.3"
``` ```
### Using git URL in Cargo.toml ### Using git URL in Cargo.toml
```toml ```toml
[dependencies.bevy_dither_post_process] [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 ## Usage
@ -58,7 +59,7 @@ fn main() {
When spawning a camera: When spawning a camera:
```rs ```rs
commands.spawn(( commands.spawn((
// Camera3dBundle... // Camera3d...
bevy_dither_post_process::components::DitherPostProcessSettings::new(level, &asset_server); bevy_dither_post_process::components::DitherPostProcessSettings::new(level, &asset_server);
)); ));
``` ```

View File

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