bevy_mod_debugdump icon indicating copy to clipboard operation
bevy_mod_debugdump copied to clipboard

Visualize multiple schedules in a single graph

Open d-bucur opened this issue 2 years ago • 0 comments

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

image

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

image

Is there currently a way to do this?

d-bucur avatar Aug 17 '23 19:08 d-bucur