2020-05-04 14:14:49 -07:00
|
|
|
use bevy::{
|
2020-12-24 20:28:31 +01:00
|
|
|
diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
|
2020-05-04 14:14:49 -07:00
|
|
|
prelude::*,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn main() {
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2020-11-02 19:01:17 -08:00
|
|
|
.add_plugins(DefaultPlugins)
|
2020-05-17 18:48:14 -07:00
|
|
|
// Adds frame time diagnostics
|
2020-05-04 14:14:49 -07:00
|
|
|
.add_plugin(FrameTimeDiagnosticsPlugin::default())
|
2020-05-17 18:48:14 -07:00
|
|
|
// Adds a system that prints diagnostics to the console
|
2020-12-24 20:28:31 +01:00
|
|
|
.add_plugin(LogDiagnosticsPlugin::default())
|
2020-05-17 18:48:14 -07:00
|
|
|
// Any plugin can register diagnostics
|
|
|
|
// Uncomment this to add some render resource diagnostics:
|
|
|
|
// .add_plugin(bevy::wgpu::diagnostic::WgpuResourceDiagnosticsPlugin::default())
|
2020-12-24 20:28:31 +01:00
|
|
|
// Uncomment this to add an entity count diagnostics:
|
|
|
|
// .add_plugin(bevy::diagnostic::EntityCountDiagnosticsPlugin::default())
|
|
|
|
// Uncomment this to add an asset count diagnostics:
|
|
|
|
// .add_plugin(bevy::asset::diagnostic::AssetCountDiagnosticsPlugin::<Texture>::default())
|
2020-05-04 14:14:49 -07:00
|
|
|
.run();
|
|
|
|
}
|