bevy_perf_hud/lib.rs
1//! Bevy Performance HUD Plugin
2//!
3//! A comprehensive performance monitoring overlay for Bevy applications that displays:
4//! - Real-time performance graphs with configurable metrics
5//! - System resource usage bars (CPU, memory)
6//! - Custom metric tracking with extensible provider system
7//! - Configurable visual appearance and positioning
8
9mod bar_scale;
10mod config;
11mod constants;
12mod plugin;
13mod providers;
14mod render;
15mod resources;
16mod systems;
17
18pub use bar_scale::*;
19pub use config::*;
20pub use constants::*;
21pub use plugin::BevyPerfHudPlugin;
22pub use providers::*;
23pub use render::*;
24pub use resources::*;
25pub use systems::*;