Gaeros's picture
build you shall
dda7d52
raw
history blame contribute delete
No virus
677 Bytes
pub mod ldtk;
pub mod splashscreen;
pub mod dialogueview;
pub mod gamestate;
pub mod input;
pub mod ui;
pub mod easing;
pub mod get_backend;
pub mod rapier_utils;
pub mod audio;
pub mod pathfinding;
#[cfg(feature = "dev_features")]
pub mod debug;
/// this code is compiled only if debug assertions are disabled (release mode)
#[cfg(not(feature = "dev_features"))]
pub mod debug {
pub fn plugin(_app: &mut bevy::app::App) {}
pub(crate) fn make_log_plugin() -> impl bevy::app::Plugin {
bevy::log::LogPlugin {
level: bevy::log::Level::INFO,
filter: "warning,separated=info".into(),
update_subscriber: None,
}
}
}