JMS55
JMS55
Small nit actually: I'd rather call this offset_locations_by()
What about `Arc`?
Imo the rotation should not be an Option, users can just use ..Skybox::default() if they don't want it. Similarly, I don't think a pipeline specialization is worth it. I'd rather...
Agreed, if the underlying API does not support it, just skip the coloring.
This should be fixed since https://github.com/bevyengine/bevy/pull/17767, probably.
I've also been looking at layout projection https://gist.github.com/taowen/e102cf5731e527cb9ac02574783c4119 which lets you animate UI layouts. E.g. animate from flex-start to flex-end. I don't quite understand how it works yet, but it's...
I don't have time to write anything myself, but I would be happy to accept a PR. Your outline looks fine, two comments: * bevy_dioxus isn't on crates.io, and I...
You can have a EnvironmentMapLight without a Skybox though. It's just a source of light. It's meaning is contextual. On cameras, it's a global light for the environment. On light...
Wgpu buffers are not currently coherent. I ran into this recently with my own SPD port to wgsl https://github.com/bevyengine/bevy/pull/13003. At the point where you switch to the last active workgroup...