diff options
author | Silas Bartha <[email protected]> | 2024-12-10 23:04:40 -0500 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-12-10 23:04:40 -0500 |
commit | fef4585b5f5d5ef74bc57bfae2e9bbb1f50a4889 (patch) | |
tree | b811964f94ef6ff26da4c1ae1a987615ea747a34 /README.md | |
parent | 091db43227592d660641c486a0ef742b12f729e5 (diff) |
Upgrade to Bevy 0.15v0.3.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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); )); ``` |