bevy_egui
This crate provides a Egui integration for the Bevy game engine.
Trying out:
An example WASM project is live at mvlabat.github.io/bevyeguiweb_showcase [source].
Features: - Desktop and web (bevywebgl2) platforms support - Clipboard (web support is limited to the same window, see rust-windowing/winit#1829) - Opening URLs - Multiple windows support (see ./examples/twowindows.rs)
bevy_egui
can be compiled with using only bevy
and egui
as dependencies: manage_clipboard
and open_url
features,
that require additional crates, can be disabled.
Here's a minimal usage example: ```toml
[dependencies] bevy = "0.5" bevy_egui = "0.4" ```
```rust use bevy::prelude::*; use bevy_egui::{egui, EguiContext, EguiPlugin};
fn main() { App::build() .addplugins(DefaultPlugins) .addplugin(EguiPlugin) .addsystem(uiexample.system()) .run(); }
fn uiexample(mut eguicontext: ResMut
For a more advanced example, see examples/ui.rs.
bash
cargo run --example ui
|bevy|bevy_egui| |---|---| |0.5|0.4| |0.4|0.1-0.3|