-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated lib and examples to bevy 0.15
- Loading branch information
1 parent
cde354f
commit 1c40fa6
Showing
18 changed files
with
1,746 additions
and
1,103 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_dolly" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Black Phlox <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -25,21 +25,22 @@ helpers = ["dep:leafwing-input-manager", "bevy/bevy_pbr"] | |
|
||
[dependencies] | ||
dolly = { path = "dolly", default-features = false } | ||
leafwing-input-manager = { version = "0.14", optional = true } | ||
leafwing-input-manager = { version = "0.16", optional = true } | ||
|
||
[dependencies.bevy] | ||
version = "0.14" | ||
features = ["bevy_render", "bevy_asset"] | ||
version = "0.15" | ||
features = ["bevy_render", "bevy_asset", "bevy_window"] | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
leafwing-input-manager = "0.14" | ||
bevy-inspector-egui = "0.25" | ||
leafwing-input-manager = "0.16" | ||
bevy-inspector-egui = "0.28" | ||
|
||
[dev-dependencies.bevy] | ||
version = "0.14" | ||
version = "0.15" | ||
features = [ | ||
"bevy_core_pipeline", | ||
"animation", | ||
"bevy_asset", | ||
"bevy_scene", | ||
"bevy_pbr", | ||
|
@@ -56,6 +57,6 @@ features = [ | |
default-features = false | ||
|
||
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy] | ||
version = "0.14" | ||
version = "0.15" | ||
features = ["x11", "wayland"] | ||
default-features = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.