diff --git a/Cargo.lock b/Cargo.lock index 553457a..c96c997 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -518,9 +518,9 @@ dependencies = [ [[package]] name = "bevy_ecs_tilemap" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58f78b9b48e6fc4129b301ad29d450198d9ca0e29f7a3d267f76a02743f7843b" +checksum = "2b64cb7171c43b30e9fa75cd8748911e06139ff45a04fa4be881201079fee295" dependencies = [ "bevy", "log", diff --git a/Cargo.toml b/Cargo.toml index 083036c..23eec00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,5 +15,7 @@ bevy_rapier2d = "0.22" # bevy_ecs_ldtk is using bevy_ecs_tilemap # bevy_ecs_tilemap has to be run with a feature flag when building to wasm, as they explain here # As expained in the cargo book , when you define here THE SAME VERSION of the dependency with the required feature, it is automatically accessible also to your other dependencies and solves the issue that bevy_ecs_ldtk doesn't provide a way to activate this through their features. -[target.'cfg(target_arch = "wasm32")'.dependencies] -bevy_ecs_tilemap = { version = "0.11", features = ["atlas"] } + +# [target.'cfg(target_arch = "wasm32")'.dependencies] +# specific 0.11.1 to fix a bug in 0.11.0 (and for some reason it didn't update automatically with a 0.11) +bevy_ecs_tilemap = { version = "0.11.1", features = ["atlas"] } diff --git a/README.md b/README.md index debaf0b..ab76aa6 100644 --- a/README.md +++ b/README.md @@ -92,10 +92,3 @@ code. - bevy_ecs_ldtk issue - workaround: some ground objects had to be remade as entities - - -## Ongoing bug after upgrade to 0.11 - -- After loading a level (entering the hous or going back), the tiles are not - rendered anymore. Entities are. - - bevy_ecs_ldtk issue, possibly bevy_ecs_tilemap issue - https://github.com/StarArawn/bevy_ecs_tilemap/pull/451