Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 857 Bytes

File metadata and controls

35 lines (25 loc) · 857 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

Version Compatibility

Bevy bevy-panic-handler
0.19 8.0.0
0.18 7.0.0
0.17 6.0.0
0.16 5.0.0
0.15 4.0.0
0.14 3.0.0