bevy_mod_debugdump icon indicating copy to clipboard operation
bevy_mod_debugdump copied to clipboard

Add ability to visualize which Bevy systems can run in parallel?

Open frewsxcv opened this issue 3 years ago • 1 comments

Do you think Bevy makes it possible to introspect this? That could be very helpful as someone who works with Bevy

frewsxcv avatar Mar 03 '22 15:03 frewsxcv

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.

jakobhellermann avatar Mar 03 '22 16:03 jakobhellermann