Skip to content

Commit

Permalink
Merge pull request #6 from Weihnachtsbaum/main
Browse files Browse the repository at this point in the history
Bevy 0.14
  • Loading branch information
johanhelsing authored Jul 12, 2024
2 parents cf2b249 + 67511eb commit 049080c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Johan Helsing <johanhelsing@gmail.com>"]
categories = ["game-development"]
name = "bevy_trauma_shake"
license = "MIT OR Apache-2.0"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "A plugin for shaking 2d cameras"
keywords = ["gamedev", "bevy", "camera"]
Expand All @@ -16,16 +16,16 @@ commands = []
system_param = []

[dependencies]
bevy = { version = "0.13", default-features = false }
noisy_bevy = "0.6"
bevy = { version = "0.14", default-features = false }
noisy_bevy = "0.7"

[dev-dependencies]
bevy = { version = "0.13", default-features = false, features = [
bevy = { version = "0.14", default-features = false, features = [
"bevy_winit",
"bevy_sprite",
"webgl2",
"x11",
] }
bevy_pancam = { version = "0.11", features = ["bevy_egui"] }
bevy_pancam = { version = "0.12", features = ["bevy_egui"] }
rand = "0.8"
bevy-inspector-egui = { version = "0.23", default-features = false }
bevy-inspector-egui = { version = "0.25", default-features = false, features = ["bevy_render"] }
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ The `main` branch targets the latest bevy release.

|bevy|bevy_trauma_shake|
|----|-----------------|
|0.13| 0.2, main |
|0.14| 0.3, main |
|0.13| 0.2 |
|0.12| 0.1 |

## License
Expand Down
2 changes: 1 addition & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::Shake;
use bevy::{ecs::system::Command, prelude::*};
use bevy::{ecs::world::Command, prelude::*};

/// Extension trait for [`Command`], adding commands for easily applying trauma
/// fire-and-forget-style.
Expand Down

0 comments on commit 049080c

Please sign in to comment.