2020-04-05 21:12:14 +00:00
|
|
|
mod diagnostic;
|
2020-12-24 19:28:31 +00:00
|
|
|
mod entity_count_diagnostics_plugin;
|
2020-05-04 20:21:14 +00:00
|
|
|
mod frame_time_diagnostics_plugin;
|
2020-12-24 19:28:31 +00:00
|
|
|
mod log_diagnostics_plugin;
|
2020-05-04 20:42:49 +00:00
|
|
|
pub use diagnostic::*;
|
2020-12-24 19:28:31 +00:00
|
|
|
pub use entity_count_diagnostics_plugin::EntityCountDiagnosticsPlugin;
|
2020-05-04 20:21:14 +00:00
|
|
|
pub use frame_time_diagnostics_plugin::FrameTimeDiagnosticsPlugin;
|
2020-12-24 19:28:31 +00:00
|
|
|
pub use log_diagnostics_plugin::LogDiagnosticsPlugin;
|
2020-03-27 22:03:47 +00:00
|
|
|
|
2020-07-17 01:47:51 +00:00
|
|
|
use bevy_app::prelude::*;
|
2020-05-04 18:43:21 +00:00
|
|
|
|
2020-08-09 23:13:04 +00:00
|
|
|
/// Adds core diagnostics resources to an App.
|
2020-05-04 20:42:49 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct DiagnosticsPlugin;
|
2020-03-27 22:03:47 +00:00
|
|
|
|
2020-08-08 03:22:17 +00:00
|
|
|
impl Plugin for DiagnosticsPlugin {
|
2020-04-06 03:19:02 +00:00
|
|
|
fn build(&self, app: &mut AppBuilder) {
|
2020-05-01 20:12:47 +00:00
|
|
|
app.init_resource::<Diagnostics>();
|
2020-03-27 22:03:47 +00:00
|
|
|
}
|
2020-04-04 19:43:16 +00:00
|
|
|
}
|