bevy_mod_debugdump icon indicating copy to clipboard operation
bevy_mod_debugdump copied to clipboard

Results 21 bevy_mod_debugdump issues
Sort by recently updated
recently updated
newest added

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): ![events_ambiguous_outside_schedules](https://github.com/jakobhellermann/bevy_mod_debugdump/assets/2290685/1a3fae50-f989-4813-8c0a-f8b9d2bfa8ba)

I tried to render my update schedule and got this: ![image](https://github.com/user-attachments/assets/0221ce9e-391d-4320-8237-bf7453f896dd) 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...