Bevy Text Popup
Bevy plugin to easily create UI text popups with events.
Popups are meant to be short-lived and on top of all other UI components.
Useful for notifications and prompting user input.
Current Customization Options:
- Font:
cargo run --example custom_font - Background: Color and Transparency (image background to come)
- Border:
cargo run --example border - Buttons:
cargo run --example buttons - Timeouts: Dismiss automatically after X seconds
- Modal:
cargo run --example modal
Upcoming Customization Options:
- Dismiss: Click anywhere to dismiss, X close button, etc.
- Input: Allow for user input.
- Hover/Click: Color change on button/popup hover/click.
- Animations: Open/Close/Dismiss/Click/etc.
Examples
This example will display a modal popup for 10s with a 'Close' button.
use *;
use ;
Buttons
cargo run --example buttons

Border
cargo run --example border

Custom Font
cargo run --example custom_font

Locations
cargo run --example locations

Modal
cargo run --example modal

Transparency
cargo run --example transparency

Bevy Compatibility
| bevy | bevy_text_popup |
|---|---|
| 0.11 | 0.1 |