Spiffy fork of bevy_remote_inspector for MMORPG inspector development
- TypeScript 70.2%
- Rust 28.2%
- CSS 0.7%
- JavaScript 0.6%
- HTML 0.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .github/workflows | ||
| .vscode | ||
| crates | ||
| examples | ||
| public | ||
| src | ||
| .gitignore | ||
| biome.jsonc | ||
| Cargo.lock | ||
| Cargo.toml | ||
| components.json | ||
| index.html | ||
| LICENSE | ||
| package.json | ||
| pnpm-lock.yaml | ||
| postcss.config.js | ||
| README.md | ||
| tailwind.config.js | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
Bevy Remote Inspector
A remote inspector for Bevy game engine, allowing you to inspect and modify entities in real-time. Alternative to bevy-inspector-egui.
Features
- Entity hierarchy tree view, including drag and drop to update parent-child relationships.
- Inspector showing entity's components and their properties, including adding/removing components. Capable of rendering and editing deeply nested Rust types (custom serialization/deserialization types may not work as expected).
- Allow to toggle components on/off (work by temporarily removing the component from the entity).
- Automatically reconnect when your Bevy app restarts.
https://github.com/user-attachments/assets/adf9c68c-ddbf-40a9-aedc-06006e574a15
Installation
bevy_remote_inspectorcurrently require Bevy version0.15.0.
cargo add bevy_remote_inspector
Usage
- Add
RemoteInspectorPluginsto your Bevy app.
use bevy_remote_inspector::RemoteInspectorPlugins;
fn main() {
App::build()
.add_plugins(DefaultPlugins)
.add_plugins(RemoteInspectorPlugins)
.run();
}
- Then open https://bevy-remote-inspector.pages.dev/ in your browser and enter the default WebSocket URL
ws://localhost:3000. - If you need to change the port you can import individual plugins and configure them.
use bevy_remote_inspector::{
stream::{websocket::RemoteStreamWebSocketPlugin, RemoteStreamPlugin},
RemoteInspectorPlugin,
};
fn main() {
App::build()
.add_plugins(DefaultPlugins)
.add_plugins((
RemoteStreamPlugin::default(),
RemoteStreamWebSocketPlugin::default().with_port(1234),
RemoteInspectorPlugin,
))
.run();
}
Development
- Run the example
cargo run --p example_simple
- Run the web client
pnpm run dev
- Then open http://localhost:1420 in your browser.
Bevy compatibility
bevy_remote_inspector |
bevy |
|---|---|
| 0.1.0 | 0.15.0 |