bevymoddebugdump

Features

Schedule graph

```rust use bevy::prelude::*; use bevy::log::LogPlugin;

fn main() { let mut app = App::new(); app.addpluginswith(DefaultPlugins, |plugins| plugins.disable::()); // disable LogPlugin so that you can pipe the output directly into dot -Tsvg bevymoddebugdump::print_schedule(&mut app); } ```

bevy's schedule graph

Render Graph

```rust use bevy::prelude::*; use bevy::log::LogPlugin;

fn main() { let mut app = App::new(); app.addpluginswith(DefaultPlugins, |plugins| plugins.disable::()); bevymoddebugdump::printrendergraph(&mut app); } ```

bevy's render graph

Render schedule graph

```rust use bevy::prelude::*; use bevy::log::LogPlugin;

fn main() { let mut app = App::new(); app.addpluginswith(DefaultPlugins, |plugins| plugins.disable::()); bevymoddebugdump::printrenderschedule(&mut app); } ```

bevy's render schedule graph

Bevy support table

|bevy|bevymoddebugdump| |---|---| |0.8|0.5| |0.7|0.4| |0.6|0.3| |0.5|0.2| |0.5|0.1|