Skip to content

sagan-software/bevy_diagnostic_visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bevy_diagnostic_visualizer

Crates.io Documentation MIT/Apache 2.0 Downloads

This crate provides a plugin for visualizing Bevy game engine diagnostics.

screenshot

Usage

use bevy::diagnostic::FrameTimeDiagnosticsPlugin;
use bevy::prelude::*;
use bevy_diagnostic_visualizer::DiagnosticVisualizerPlugin;

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_plugin(FrameTimeDiagnosticsPlugin)
        .add_plugin(DiagnosticVisualizerPlugin::default())
        .run();
}

Example

cargo run --example many_foxes

License

Licensed under either of:

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

The assets included in this repository typically fall under different open licenses. These will not be included in your game (unless copied in by you), and they are not distributed in the published crate. See CREDITS.md for the details of the licenses of those files.

About

No description, website, or topics provided.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages