🍞 Bevy Toast

License: MIT/Apache Doc Crate Coverage Status Bevy tracking

A bevy plugin to easily show toast notifications to the player

Features

Demo

The source code for the following example is available here: /examples/hello_world.rs

Hello world toast GIF

Usage

Plugin setup

Add the following plugins to your project:

```rust use bevytweening::TweeningPlugin; use bevytoast::ToastPlugin;

fn main() { App::new() .addplugin(TweeningPlugin) .addplugin(ToastPlugin) .run(); } ```

Send a toast 🍞

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), }); } }

Compatible versions

| bevy | bevy_toast | | ---- | ---------- | | 0.6 | 0.1 |