#Is there a way to get a text representation of the schedule for a given bevy app?
10 messages · Page 1 of 1 (latest)
you can turn on the ambiguity checker to get a list of systems that are reading/writing to the same data, but don't have a defined ordering
there is also bevy_mod_debugdump that outputs the schedule in .dot format
Is there a way to get all Schedule label in an app?
get the Schedules resource from the world and use the iterator https://docs.rs/bevy/latest/bevy/ecs/prelude/struct.Schedules.html#method.iter_mut
theres the extract and render schedules too which are in separate worlds in the corresponding sub apps
I believe this is a planned feature btw
Hmm, the debugdump methods all take app, there's no way to get that after .run is called right?
yeah
Ahh dang, no pretty way to do it then