bevy-panic-handler

Crates.iobevy-panic-handler
lib.rsbevy-panic-handler
version3.0.0
sourcesrc
created_at2023-09-25 02:34:52.811381
updated_at2024-07-17 00:21:36.129783
descriptionA Bevy plugin that creates a popup message and logs to error on panic
homepage
repositoryhttps://github.com/Koranir/bevy-panic-handler
max_upload_size
id982301
size97,270
Daniel (Koranir)

documentation

README

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

Commit count: 23

cargo fmt