bevy_mod_debugdump
bevy_mod_debugdump copied to clipboard
The arrows (which I assume are the system ordering) in `print_schedule` all merge together in the left-hand side and the information is not helpful. I'm aware some of this is...
Do you think Bevy makes it possible to introspect this? That could be very helpful as someone who works with Bevy
Broken
Thanks for the open source, but samples from the readme are broken.
It's not a big problem, I suppose, but bevy_mod_debugdump gets super confused when it meets `iyes_loopless`'s data in the schedule graph: 1. It just formats the StateTransitionStageLabel in an user...
Cargo.toml: ``` bevy = version = "0.12.1" bevy_mod_debugdump = "0.9.0" ``` Code: ``` use bevy::prelude::*; ... let mut app = App::new(); app.add_plugins(DefaultPlugins) .add_systems(Startup, systems::setup) .add_systems( Update, (bevy::window::close_on_esc, systems::rotate_in_place), ); if...
I have systems that are part of small sets I'd like to ignore for the purposes of visualization. They're currently shown as independent systems with links to multiple sets, but...
The README is out of date. `print_schedule` needs to be replaced with `print_schedule_graph`. This could be made more robust using `#![doc = include_str!("../README.md")]` in the crate to include the README...
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...
https://jakobhellermann.github.io/bevy_mod_debugdump/?schedule=Main&include=bevy_render,bevy_pbr Code at https://github.com/jakobhellermann/bevy_mod_debugdump/tree/pages - [x] share link and load options from URL params - [x] select schedule, includes and excludes - [ ] filter by copmonent access - [...
This is a PR to address Issue #26 I've added a new `include_system_set` member to `Settings`. Inside `included_systems_sets`, I'm checking this mapper to skip any unwanted system sets. I think...