A bevy plugin to easily show toast notifications to the player
The source code for the following example is available here: /examples/hello_world.rs
Add the following plugins to your project:
```rust use bevytweening::TweeningPlugin; use bevytoast::ToastPlugin;
fn main() { App::new() .addplugin(TweeningPlugin) .addplugin(ToastPlugin) .run(); } ```
Sending a Toast is a simple as sending a ShowToast
event:
rust
// send a toast when pressing 'E'
fn keyboard_handler(
keyboard: Res<Input<KeyCode>>,
toast_sender: EventWriter<ShowToast>,
) {
if keyboard.just_pressed(KeyCode::E) {
toast_evt.send(ShowToast {
title: "Achievement reached!".to_string(),
subtitle: "You pressed 'E'".to_string(),
duration: Duration::from_secs(2),
});
}
}
| bevy | bevy_toast | | ---- | ---------- | | 0.6 | 0.1 |