From fef4585b5f5d5ef74bc57bfae2e9bbb1f50a4889 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Tue, 10 Dec 2024 23:04:40 -0500 Subject: Upgrade to Bevy 0.15 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index ea4d584..53250c6 100644 --- a/README.md +++ b/README.md @@ -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); )); ``` -- cgit v1.2.3