bevystatbars

Bevy crate for drawing floating statbars like health bars above enemy sprites etc.

Version 0.3

New in this release

How to use

Add the dependency to your Cargo.toml file with

toml [dependencies.bevy_stat_bars] version = "0.3"

Then register any components you want to observe with a statbar with your Bevy App:

```rust use bevystatbars::*;

App::new() .addplugins(DefaultPlugins) .addstatbarbarcomponent_observer::() // ..etc, rest of app .run(); ```

You also need to implement the StatbarObservable trait on those components:

rust impl StatbarObservable for HitPoints { fn get_statbar_value(&self) -> f32 { self.value / self.max } }

And now you can add a Statbar::<HitPoints> component to an entity to visualize its HitPoints component

rust commands.entity(enemy_id) .insert_bundle(( Statbar::<HitPoints> { empty_color: Color::NAVY, length: 10., thickness: 2., displacement: 8. * Vec2::Y, ..Default::default() }, StatbarBorder::<HitPoints>::all(Color::WHITE, 1.), ));

/media/example2.png

#

Examples

There are six examples you can look at that cover most of the features and use cases, run them with cargo run --example minimal_standalone cargo run --example basic_interactive cargo run --example observe_resource cargo run --example demo cargo run --example stress --release cargo run --example stress2 --release The demo example is the probably the most useful to look at.

The stress2 example uses macros to add hundreds of marker types and can take a few minutes to compile.

#

Notes