2024-03-29 02:04:56 +00:00
|
|
|
//! This module provides panic handlers for [Bevy](https://bevyengine.org)
|
2024-07-31 21:16:05 +00:00
|
|
|
//! apps, and automatically configures platform specifics (i.e. Wasm or Android).
|
2024-03-19 00:56:49 +00:00
|
|
|
//!
|
|
|
|
//! By default, the [`PanicHandlerPlugin`] from this crate is included in Bevy's `DefaultPlugins`.
|
|
|
|
//!
|
|
|
|
//! For more fine-tuned control over panic behavior, disable the [`PanicHandlerPlugin`] or
|
|
|
|
//! `DefaultPlugins` during app initialization.
|
|
|
|
|
2024-09-24 11:42:59 +00:00
|
|
|
use crate::{App, Plugin};
|
2024-03-19 00:56:49 +00:00
|
|
|
|
|
|
|
/// Adds sensible panic handlers to Apps. This plugin is part of the `DefaultPlugins`. Adding
|
|
|
|
/// this plugin will setup a panic hook appropriate to your target platform:
|
2024-07-31 21:16:05 +00:00
|
|
|
/// * On Wasm, uses [`console_error_panic_hook`](https://crates.io/crates/console_error_panic_hook), logging
|
2024-06-17 17:22:01 +00:00
|
|
|
/// to the browser console.
|
2024-03-19 00:56:49 +00:00
|
|
|
/// * Other platforms are currently not setup.
|
|
|
|
///
|
|
|
|
/// ```no_run
|
2024-03-29 02:04:56 +00:00
|
|
|
/// # use bevy_app::{App, NoopPluginGroup as MinimalPlugins, PluginGroup, PanicHandlerPlugin};
|
2024-03-19 00:56:49 +00:00
|
|
|
/// fn main() {
|
|
|
|
/// App::new()
|
|
|
|
/// .add_plugins(MinimalPlugins)
|
|
|
|
/// .add_plugins(PanicHandlerPlugin)
|
|
|
|
/// .run();
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// If you want to setup your own panic handler, you should disable this
|
|
|
|
/// plugin from `DefaultPlugins`:
|
|
|
|
/// ```no_run
|
2024-03-29 02:04:56 +00:00
|
|
|
/// # use bevy_app::{App, NoopPluginGroup as DefaultPlugins, PluginGroup, PanicHandlerPlugin};
|
2024-03-19 00:56:49 +00:00
|
|
|
/// fn main() {
|
|
|
|
/// App::new()
|
|
|
|
/// .add_plugins(DefaultPlugins.build().disable::<PanicHandlerPlugin>())
|
|
|
|
/// .run();
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct PanicHandlerPlugin;
|
|
|
|
|
|
|
|
impl Plugin for PanicHandlerPlugin {
|
|
|
|
fn build(&self, _app: &mut App) {
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
{
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
{
|
|
|
|
// Use the default target panic hook - Do nothing.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|