bevy_egui

Crates.io license Crates.io Rust

This crate provides a egui integration for the Bevy game engine.

Features: - Desktop and web (bevy_webgl2) platforms support - Clipboard (web support is limited to the same window, see rust-windowing/winit#1829) - Opening URLs

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.

bevy_egui

Trying out

An example WASM project is live at mvlabat.github.io/bevyeguiweb_showcase [source].

Note that in order to use bevy_eguiin WASM you need bevy_webgl2 of at least 0.4.1 version.

Usage

Here's a minimal usage example: ```toml

Cargo.toml

[dependencies] bevy = "0.4" bevy_egui = "0.1" ```

```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) { let ctx = &mut egui_context.ctx; egui::Window::new("Hello").show(ctx, |ui| { ui.label("world"); }); } ```

For a more advanced example, see examples/ui.rs.

bash cargo run --example ui --features="bevy/x11 bevy/png bevy/bevy_wgpu"