bevy_stdx is a collection of tiny crates that are commonly useful when using Bevy.
bevy_anyhow_alert: A high-level plugin for error management. Callmy_system.anyhow_alertwhen registering systems to adapt anyfn my_system(...) -> anyhow::Result<T>(orResult<T, Vec<anyhow::Error>>) so that the errors are raised to the screen as UI "alert" elements.bevy_assert_plugin: An extension trait forAppthat checks if a dependency plugin has been attached and provides a default if not.bevy_ui_mod_alerts: A plugin that handles spawning UI elements when Alert entities are spawned.bevy_mod_try_system: An extension trait forIntoSystem<Out = Result<Val, Error>>for someVal,Errortypes. It provides afn pipe_err(other_system: IntoSystem<In = Error>)method to users which is howbevy_anyhow_alertis built.