#diagnostics #extension #explorer #bevy #vs-code #bevy-plugin #expire

bevy_diagnostics_explorer

Bevy plugin that provides provides diagnostics into VSCode extension

1 unstable release

0.1.0 May 15, 2023

#1467 in Game dev

Download history 7/week @ 2024-03-11 1/week @ 2024-03-25 37/week @ 2024-04-01 1/week @ 2024-04-08 5/week @ 2024-04-22 12/week @ 2024-06-03 24/week @ 2024-06-10 10/week @ 2024-06-17 10/week @ 2024-06-24

56 downloads per month

Apache-2.0

15KB
268 lines

📊 Bevy Diagnostics Explorer – plugin and VSCode extension for visualizing diagnostics

Build status dependency status

Discord (ping me if it expires)

How to use

  1. Add dependency to Cargo.toml (TODO: publish to crates.io)
[dependencies]
bevy_diagnostics_explorer = { git = "...", branch = "main" }
  1. Add plugin to your app
use bevy_diagnostics_explorer::DiagnosticsExplorerPlugin;
...
    .add_plugin(DiagnosticsExplorerPlugin)
  1. Disable default logging system
use bevy::log::LogPlugin;

...
    .disable::<LogPlugin>()

  1. Enable trace feature for Bevy in Cargo.toml:
[dependencies]
bevy = { version = "...", features = ["trace"] }
  1. Run VSCode with Bevy Diagnostics Explorer extension installed (TODO: publish to marketplace)

Dependencies

~24–36MB
~643K SLoC