Eric Walker

Results 36 comments of Eric Walker

You're the second person to mention that. I only have a weak, almost non-preference for clicking through instead of opening in a new tab. But I'll try this and see...

I have to wonder, though — is the expectation that links open into new tabs, without an icon along the lines of the one seen in Wikipedia? My expectation is...

I'm going to wait for more data on this one. So far it's 2:1 for links opening in new tabs (you and another person wanting links to open in a...

I started from https://github.com/bevyengine/bevy/pull/7244 and created https://github.com/bevyengine/bevy/pull/7939. But now I'm starting to wonder whether using an iterator that is consumed improves upon the ergonomics of passing an `&[Entity]` slice around....

That makes sense. If you can think of a way to avoid the intermediate vecs while still passing in an iterator to the trait methods, then perhaps the PR can...

Just looking through the history of this story — 1. From May 28, 2021, to [June 19, 2021](https://github.com/bevyengine/bevy/pull/2268#issuecomment-864416370), @KirmesBude and @NathanSWard worked on https://github.com/bevyengine/bevy/pull/2268, and then PR went dormant. A...

Looks like there's a dependency for this story on [refactoring out `Image` and `Color`](https://github.com/bevyengine/bevy/pull/5488#issuecomment-1200062891) into their own crate. (I was running into the cyclical dependency between `bevy_asset` and `bevy_window` as...

That works. This is what the crate ended up looking like: ```sh $ tree bevy_render_primitives bevy_render_primitives ├── Cargo.toml └── src ├── color │   ├── colorspace.rs │   └── mod.rs ├── lib.rs...

@cart, @alice-i-cecile a lot of Bevy's concepts are new to me, and I wasn't sure whether I fully understood the proposal. I've put a draft PR together and wanted to...

> It's possible to fix the Executor trait completely with GATs which we'll be doing as soon as GATs hit stable. Just curious whether this has happened. I've been trying...