Results 195 comments of Rob Parrett

Sorry for the ping, I've gone ahead and adopted this over here: #547

Merged the adopted PR. Thanks `@andriyDev`.

I have a branch in a "compiling but seemingly not even close to working" state here: . Unfortunately, the migration seems pretty involved and Bevy's migration guide leaves a lot...

The troubles in my branch are definitely coming from not properly migrating https://github.com/bevyengine/bevy/pull/9236 ("reorder render sets"). Someone wanting to help out might want to try to do the migration incrementally,...

> Any progress on this? Not from me, sorry. My bevy time has been spent fighting other bevy 0.12 bugs that are blocking my own projects. > Quick update :...

Here's my incremental branch: https://github.com/rparrett/bevy_ecs_tilemap/tree/bevy-0.12-incremental I never got "render sets" working, but my [`e8b3892` commit](https://github.com/rparrett/bevy_ecs_tilemap/commit/1cc2077a9b23f7e320aff17021d1d1ab15ba0498) seems to be working for the `colors` example, anyway.

`tiled` and `ldtk` are also broken in mine though.

Ah, right. `tiled` and `ldtk` can be fixed by adding the `multi-threaded` feature to bevy in `dev-dependencies`. Any app not using bevy's default features need to add this. I had...

Just a couple notes for anyone playing along: - [`cargo-examples`](https://crates.io/crates/cargo-examples/0.4.0) is handy - text2d was completely broken for like... a lot of the bevy `0.12-dev` cycle starting at PR 9236,...

You can specify a git dependency like ``` bevy_ecs_tilemap = { git = "https://github.com/StarArawn/bevy_ecs_tilemap.git" } ``` In your `Cargo.toml`. This works as long as your project is not a library...