Bevy Stat Bars

Simple library for drawing floating stat bars.

About

Usage

In your Cargo.toml [dependencies] section, add the line:

toml bevy_stat_bars = "0.1" This a minimal system that should spawn a horizontal 75% filled stat bar in the middle of the screen (assuming you already have an app with a 2d camera):

```rust use bevystatbars::*;

fn spawnastatbar(mut commands: Commands) { commands.spawnbundle(( StatBar { value: 0.75, size: Vec2::new(200., 20.), ..Default::default() }, )); } ```

There are some complete examples you can run with the commands: cargo run --example basic cargo run --example interactive cargo run --example minimal

Notes