bevy-panic-handler 0.1.0

A Bevy plugin that creates a popup message and logs to error on panic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Bevy Panic handler

A Plugin for [`bevy`](https://github.com/bevyengine/bevy) that creates a popup and logs to error on panic.

## Usage

```rs
use bevy::prelude::*;

fn main() {
    App::new()
        .add_plugins(bevy::log::LogPlugin)
        .add_plugins(bevy_panic_handler::PanicHandler)
        // Normal usage...
}
```