A bevy plugin wrapping the crate egui-notify
to allow sending toast messages utilizing events.
``` fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(NotifyPlugin) .addplugin(EguiPlugin) .insertresource(Notifications(Toasts::default())) .addsystem(notifyexample_system) .run(); }
fn notifyexamplesystem(keyinput: Res>, mut events: ResMut
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(Notifications(Toasts::default()));