Results 90 issues of Rob Parrett

- The rustflags are no longer necessary - `bevy/webgl2` is already specified in `dev-dependencies` - both examples now consistently don't use `--release` Tested both commands to ensure they're working /...

documentation

- Formatting for the `bevy_ecs_ldtk` link was broken - Added a similar link for `bevy_ecs_tiled`.

documentation

Compare the way the code block interacts with other elements vs. the table. The content below the table here: Seems awkwardly close to the table. I am not sure if...

C-Bug
C-Webdev
D-Straightforward

It seems that a list with a line break between two items is considered a "[loose list](https://spec.commonmark.org/0.29/#loose)" ``` - a - b ``` Becomes this: ``` Start(List(None)) Start(Item) Start(Paragraph) Text(Borrowed("a"))...

C-Bug
A-Migration Guides
C-Automation

https://github.com/bevyengine/bevy_github_ci_template/blob/main/src/main.rs#L1-L5 These can go in a `[lints]` table in `Cargo.toml` now.

good first issue

This is easy to mess up, see [avian's faq](https://docs.rs/avian2d/latest/avian2d/#why-does-my-camera-following-jitter). I am not actually sure how to accomplish this with dolly or if it's even possible, since dolly's systems run in...

This is a lightweight version of #3 with minimal changes. - Moved examples from `README` into an `examples` folder without any modifications - Added an example demonstrating the export functionality...

Re-meshing should only occur when e.g. `Terrain` has changed. This can be accomplished by adding `Changed` as a query filter in the relevant systems. This would also require splitting the...

I'd like to just be able to specify a filename in code, and not compile `rfd` in my project. `rfd` could be made optional through a cargo feature, and perhaps...

It seems that within the context of Bevy, `rfd` must be invoked from the main thread on this platform. `rfd`'s docs suggest that it should work from any thread, but...