Display bevy diagnostics on the window without any hassle.
What this can do:
see the examples on how to do this.
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
| bevy | bevyscreendiagnostics | | ---- | ----------------------- | | 0.9 | 0.1 |