-
-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
experimentation with debugdump #383
Conversation
app.add_plugins((PhysicsPlugins::default(), PhysicsDebugPlugin::default())); | ||
// Schedules of interest: | ||
// - PhysicsSchedule | ||
// - SubstepSchedule |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As of f161a74 ; Attempting to make a graph for SubstepSchedule
results in an error.
- I opened an upstream issue: Missing quotes in a tooltip results in error while creating graph. jakobhellermann/bevy_mod_debugdump#51.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! This is really useful. The SubstepSchedule
issue is unfortunate, but not a blocker here imo.
Objective
bevy_mod_debugdump
, this PR merely starts a discussion on adding some "first party" interest to such graphs.Solution
Run with:
cargo run --example debugdump_3d > avian.dot && dot -Tsvg avian.dot > avian.svg
Output for 3d
PhysicsSchedule
SubstepSchedule
FixedPostUpdate
Update
Changelog