Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 574 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 574 Bytes

Bevy Panic Handler

Crates.io

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::new().build())
        // Normal bevy code...
}

Check examples for more usages.

Example

popup image