bevyscreendiagnostics

Display bevy diagnostics on the window without any hassle.

What this can do:

see the examples on how to do this.

Quickstart

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

compatible bevy versions

| bevy | bevyscreendiagnostics | | ---- | ----------------------- | | 0.9 | 0.1 |