This crate provides a debug interface using egui where you can visually edit the values of your components live.
You can either inspect a single resource using the InspectorPlugin
, or use the WorldInspectorPlugin
to inspect all entities.
```rust use bevy::prelude::*; use bevyinspectoregui::{InspectorPlugin, Inspectable};
struct Data { should_render: bool, text: String, #[inspectable(min = 42.0, max = 100.0)] size: f32, }
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(InspectorPlugin::::new()) .run(); } ```
```rust use bevy::prelude::*; use bevyinspectoregui::WorldInspectorPlugin;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(WorldInspectorPlugin::new()) .run(); } ```
You can configure the WorldInspectorPlugin
by inserting the WorldInspectorParams
resource.
If you want to only display some components, you may want to use the InspectorQuery instead.
If you want custom types to be displayed in the inspector, you'll need to register them on the InspectableRegistry
:
```rust use bevy::prelude::*; use bevyinspectoregui::{WorldInspector, RegisterInspectable};
struct ReflectedType;
struct InspectableType;
fn main() {
App::build()
.addplugins(DefaultPlugins)
.addplugin(WorldInspectorPlugin::new())
.registertype::
More examples (with pictures) can be found in the [
examples folder`](examples).
| bevy | bevy-inspector-egui | | ------- | ------------------- | | 0.6 | 0.7 | | 0.5 | 0.5-0.6 | | 0.5 | 0.4 | | 0.4 | 0.1-0.3 |