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
you can use a custom font by disabling the builtin-font
default feature and providing your own to the ScreenDiagnosticsPlugin
struct. The builtin font and license can be found in the ./assets/ folder.
| bevy | bevyscreendiagnostics | | ---- | ----------------------- | | 0.10 | 0.2 | | 0.9 | 0.1 |