bevy_mod_debugdump
bevy_mod_debugdump copied to clipboard
Add ability to visualize which Bevy systems can run in parallel?
Do you think Bevy makes it possible to introspect this? That could be very helpful as someone who works with Bevy
The information is definitely there, bevy_mod_debugdump already displays tooltips showing which components and resources are accessed. You can then need to call Access::is_compatible to check whether systems can be run in parallel.
The harder part is figuring out how to output a dot file that looks nice and conveys the information.