A Plugin for bevy that creates a popup and logs to error on panic.
bevy
```rs use bevy::prelude::*;
fn main() { App::new() .addplugins(bevy::log::LogPlugin) .addplugins(bevypanichandler::PanicHandler::new().build()) // Normal bevy code... } ```