Display bevy diagnostics on the window without any hassle.
This adds the framerate and frametime diagnostics to your window.
```rs use bevy::prelude::*;
use bevyscreendiagnostics::{ScreenDiagnosticsPlugin, ScreenFrameDiagnosticsPlugin};
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(ScreenDiagnosticsPlugin::default()) .addplugin(ScreenFrameDiagnosticsPlugin) .addstartupsystem(setupcamera) .run(); }
fn setup_camera(mut commands: Commands) { commands.spawn(Camera2dBundle::default()); } ```
The ScreenFrameDiagnosticsPlugin is a very simple plugin