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 is a minimal app that should draw a 75% full stat bar in the middle of the window: ```rust use bevy::prelude::; use bevy_stat_bars::;

fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(StatBarsPlugin) .addstartupsystem(|mut commands: Commands| { commands .spawnbundle(OrthographicCameraBundle::new2d()) .commands() .spawn_bundle((StatBar { value: 0.75, size: Vec2::new(200., 20.), ..Default::default() },)); })
.run(); } ```

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

Notes