Update to bevy 0.14, improve docs
Showing
- Cargo.lock 926 additions, 701 deletionsCargo.lock
- Cargo.toml 3 additions, 3 deletionsCargo.toml
- src/assets/asset_events.rs 3 additions, 6 deletionssrc/assets/asset_events.rs
- src/ldtk/mod.rs 48 additions, 54 deletionssrc/ldtk/mod.rs
- src/lib.rs 1 addition, 1 deletionsrc/lib.rs
- src/map_query.rs 124 additions, 8 deletionssrc/map_query.rs
- src/system/types.rs 12 additions, 1 deletionsrc/system/types.rs
- src/system/utils.rs 8 additions, 1 deletionsrc/system/utils.rs
This diff is collapsed.
[package] | ||
name = "micro_ldtk" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
edition = "2021" | ||
authors = [ | ||
"Louis Capitanchik <louis@microhacks.co.uk>" | ||
"Louis Capitanchik <louis@microhacks.co.uk>" | ||
] | ||
repository = "https://lab.lcr.gr/microhacks/bevy-micro-ldtk.git" | ||
description = "Load data from LDTK, index it and make it accessible through Bevy assets, extract and use autotile rules" | ||
... | ... | @@ -34,7 +34,7 @@ _optional_tile_list = [] |
no_panic = [] | ||
[dependencies] | ||
bevy = { version = "0.13", default-features = false, features = ["bevy_render", "bevy_sprite", "bevy_asset"] } | ||
bevy = { version = "0.14", default-features = false, features = ["bevy_render", "bevy_sprite", "bevy_asset", "serialize"] } | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
... | ... |
Please register or sign in to comment