Rob Parrett
Rob Parrett
We're displaying these with a constant aspect ratio now so it would be a bit easier to recommend a size. It seems like something like 400x225 might be about right...
That's great info to collect here. I've been using `cargo make` in mine to do something similar. It's sort of nice because you can write the tasks in cross-platform "duckscript."...
With Bevy 0.12 getting automatic batching, it might be possible to rework `bevy_prototype_lyon` so that it can benefit from that. As things stand now, this doesn't help us. We would...
It seems that there are two separate issues being described here. 1. An invalid chunk header error 2. An unrelated "slice length" panic ~~Maybe #1779 shouldn't have been closed?~~ ~~Here's...
While my reproducer for the "slice length" panic and the one from #1799 were both seemingly fixed by #1806, https://github.com/image-rs/image/issues/1712#issuecomment-1127393893 seems to be a separate issue that is still present...
FWIW, I am slightly on "team no split." Although I made some convincing arguments to myself on both sides. Apart from that, I think Rob's naming suggestions would be a...
This should close #1618 as well, I think
I have seen at least one other person get hit by the double-UI thing while trying to build off of this example. I think a PR to disable UI for...
Just need to update the PR title and description if we're reusing this PR.
This seems to be implementing Bevy's [`viewport_to_world_2d`](https://docs.rs/bevy/latest/bevy/prelude/struct.Camera.html#method.viewport_to_world_2d) manually. I think #305 probably predates that addition to Bevy, and can be closed now. We also have a [mouse_to_tile](https://github.com/StarArawn/bevy_ecs_tilemap/blob/main/examples/mouse_to_tile.rs) example that works...