bevy_mod_debugdump
bevy_mod_debugdump copied to clipboard
Previously, we could only dump the Update schedule from the CLI. Now we can do any schedule. To make this happen, I also redesigned the CLI slightly. Instead of having...
Previously, sending an AppExit event would result in the window opening up (which can be annoying). Now, by just calling std::process:exit, we just quit right on the spot. Note we...
add a ci workflow, just to test the project compiles, also for cargo fmt see https://github.com/Vrixyz/bevy_mod_debugdump/pull/1 for a run.
to understand the flow of events, a graph of systems writing to events and reading which events might be useful. example render on `bevy_mod_picking` (example minimal): 
I tried to render my update schedule and got this:  The same resources and components are being drawn multiple times again and again, seemingly once per use? It's not...
- With the same graph as https://github.com/jakobhellermann/bevy_mod_debugdump/issues/38 ; another error encountered in both https://dreampuf.github.io/GraphvizOnline and http://magjac.com/graphviz-visual-editor/ : error: ``` in routesplines, Pshortestpath failed ``` Not sure what to think of...
When using a graph visualizer (such as https://dreampuf.github.io/GraphvizOnline/), I had an error around that line: ```dot "node_System(44)" ["label"="sync_simple_transforms In multiple sets, SyncBackend, RapierTransformPropagateSet", "tooltip"="bevy_transform::systems::sync_simple_transforms"] ``` (See full dotgraph at the...
- When running `dot -Tsvg myfile.dot` (from https://github.com/jakobhellermann/bevy_mod_debugdump/issues/38), I noticed a warning, it's not critical, but I just wanted to let you know. (it might be interesting to add a...
Follow up on : https://github.com/Jondolf/avian/pull/383/files#r1768146223 Error message while running `dot -Tsvg dump.dot`: ``` Error: dump.dot: syntax error in line 129 near ':' ``` line 129: ``` "node_System(5)" -> "node_System(6)" ["lhead"="",...
I'm not sure if the bug is originating from this crate or bevy, but it seems weird that `system_no_set` is linked to `system_in_child_set2` (green arrow should not exist). ![Screenshot from...