Replies: 1 comment
-
I ran into this as well. It's quite difficult to grok what's going on with the sheer volume of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why
The pipelined rendering system that bevy currently have is great but feels almost impossible to learn. This is due to the fact a lot of code is shared between multiple pipelines, gated behind if statements and wgsl
#ifdef
s, making them difficult to read or modify.Proposed Solution
specialize
onMaterial
into 3 functions for each pipeline.specialize
prepass_specialize
deferred_specialize
Beta Was this translation helpful? Give feedback.
All reactions