https://github.com/powerock38/bevy-brp-inspector
Simple and dirty Bevy ECS debugger powered by Bevy Remote Protocol
https://github.com/powerock38/bevy-brp-inspector
Last synced: about 1 year ago
JSON representation
Simple and dirty Bevy ECS debugger powered by Bevy Remote Protocol
- Host: GitHub
- URL: https://github.com/powerock38/bevy-brp-inspector
- Owner: Powerock38
- Created: 2024-12-09T20:32:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-10T10:52:43.000Z (over 1 year ago)
- Last Synced: 2025-04-01T18:29:20.081Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://powerock38.github.io/bevy-brp-inspector/
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bevy BRP Inspector
This tool aims to be a cheap alternative to [the WorldInspectorPlugin of **bevy-inspector-egui**](https://github.com/jakobhellermann/bevy-inspector-egui).
It lists all the entities present in the `World` with their respective components, `Children` and `Parent` if present.
## Usage
1. Enable the `bevy_remote` feature in your `Cargo.toml` and add these two plugins to you `App` configuration:
```rust
.add_plugins((
RemotePlugin::default(),
RemoteHttpPlugin::default().with_header("Access-Control-Allow-Origin", "*"),
))
```
2. Go to https://powerock38.github.io/bevy-brp-inspector/
3. Enjoy the cutting-edge UI technology
## Known issues
- Doesn't list `Resource`s (not possible with BRP (yet?))
- Can't filter out `Observer` and `SystemIdMarker` entities (BRP says that these components don't exist)
- The code is horrible