Bevy Notify

A bevy plugin wrapping the crate egui-notify to allow sending toast messages utilizing events.

Usage

``` fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(NotifyPlugin) .addplugin(EguiPlugin) .insertresource(Toasts::default()) .addsystem(notifyexample_system) .run(); }

fn notifyexamplesystem(keyinput: Res>, mut events: ResMut>) { if keyinput.just_pressed(KeyCode::Space) { events.send(Toast::success("Space pressed")); } } ```

Setup

Add the plugin to your bevy app alongside the EguiPlugin from bevy_egui. You also need to add a Toasts resource to your app.

App::new().add_plugin(NotifyPlugin) .add_plugin(EguiPlugin) .insert_resource(Toasts::default());