2022-05-16 13:53:20 +00:00
|
|
|
//! Shows different built-in plugins that logs diagnostics, like frames per second (FPS), to the console.
|
|
|
|
|
2020-05-04 21:14:49 +00:00
|
|
|
use bevy::{
|
2020-12-24 19:28:31 +00:00
|
|
|
diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
|
2020-05-04 21:14:49 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn main() {
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2023-06-21 20:51:03 +00:00
|
|
|
.add_plugins((
|
|
|
|
DefaultPlugins,
|
|
|
|
// Adds frame time diagnostics
|
|
|
|
FrameTimeDiagnosticsPlugin,
|
|
|
|
// Adds a system that prints diagnostics to the console
|
|
|
|
LogDiagnosticsPlugin::default(),
|
|
|
|
// Any plugin can register diagnostics. Uncomment this to add an entity count diagnostics:
|
|
|
|
// bevy::diagnostic::EntityCountDiagnosticsPlugin::default(),
|
|
|
|
// Uncomment this to add an asset count diagnostics:
|
|
|
|
// bevy::asset::diagnostic::AssetCountDiagnosticsPlugin::<Texture>::default(),
|
|
|
|
// Uncomment this to add system info diagnostics:
|
|
|
|
// bevy::diagnostic::SystemInformationDiagnosticsPlugin::default()
|
|
|
|
))
|
2020-05-04 21:14:49 +00:00
|
|
|
.run();
|
|
|
|
}
|