bevy_mod_debugdump
bevy_mod_debugdump copied to clipboard
Visualize multiple schedules in a single graph
I would like to be able to display 2 nested schedules inside a single graph. I have the following graph for the FixedUpdate schedule with 4 different SystemSets
And run_solver_schedule is defined something like this
fn run_solver_schedule(world: &mut World) {
for _ in 0..2 {
world.run_schedule(SolverSchedule);
}
}
And SolverSchedule has the following graph
Is there currently a way to do this?