bevy-panic-handler 1.0.0

A Bevy plugin that creates a popup message and logs to error on panic
Documentation

Bevy Panic handler

A Plugin for bevy that creates a popup and logs to error on panic.

Usage

use bevy::prelude::*;

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

Examples

popup image