aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-12-10 23:04:40 -0500
committerLibravatar Silas Bartha <[email protected]>2024-12-10 23:04:40 -0500
commitfef4585b5f5d5ef74bc57bfae2e9bbb1f50a4889 (patch)
treeb811964f94ef6ff26da4c1ae1a987615ea747a34 /README.md
parent091db43227592d660641c486a0ef742b12f729e5 (diff)
Upgrade to Bevy 0.15v0.3.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
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);
));
```