Crates.io | bevy-panic-handler |
lib.rs | bevy-panic-handler |
version | 3.0.0 |
source | src |
created_at | 2023-09-25 02:34:52.811381 |
updated_at | 2024-07-17 00:21:36.129783 |
description | A Bevy plugin that creates a popup message and logs to error on panic |
homepage | |
repository | https://github.com/Koranir/bevy-panic-handler |
max_upload_size | |
id | 982301 |
size | 97,270 |
A Plugin for bevy
that creates a popup and logs to error on panic.
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.