#bevy #gamedev #healthbar #background-color #billboard

nightly bevy_health_bar3d

Health bar for bevy implemented as a billboard shader

15 stable releases

3.2.0 Mar 21, 2024
3.1.0 Nov 16, 2023
2.0.1 Nov 12, 2023
1.4.4 Aug 12, 2023
1.3.0 May 10, 2023

#213 in Game dev

Download history 6/week @ 2024-02-13 34/week @ 2024-02-20 7/week @ 2024-02-27 3/week @ 2024-03-12 121/week @ 2024-03-19 15/week @ 2024-03-26 162/week @ 2024-04-02 8/week @ 2024-04-09

306 downloads per month

MIT/Apache

39KB
427 lines

Checks Release

bevy_health_bar3d

Health Bar plugin for Bevy 3D. Despite its name, this plugin is universally applicable. It can be used to render a bar for any value that can be represented as percentage. Can be freely sized, supports horizontal or vertical orientation, custom fore- and background colors, and an optional border with configurable thickness and color. Works with split-screens or layered cameras out of the box.

Bevy Compatibility

Bevy Version Crate Version
0.13 >= 3.2.0
0.12 2.0.0
0.11 1.2.0
0.10 1.1.0
0.9 1.0.0

Usage

Implement the Percentage trait for the component you want to track and pass the type of your component to the plugin on instantiation:

use bevy_health_bar3d::prelude::{HealthBarPlugin, Percentage};

#[derive(Component, Reflect)]
struct Health {
    max: f32,
    current: f32,
}

impl Percentage for Health {
    fn value(&self) -> f32 {
        self.current / self.max
    }
}

fn main() {
    App::new()
        // add multiple times to track further component types
        .add_plugins((HealthBarPlugin::<Health>::default(), HealthBarPlugin::<Mana>::default()))
        // set a different color for the Mana bar
        .insert_resource(ColorScheme::<Mana>::new().foreground_color(ForegroundColor::Static(Color::BLUE)))
        .run();
}

Spawn a mesh, the component to be tracked, and a BarSettings component to configure the look & feel of your bar.

fn setup(
    mut commands: Commands,
    mut meshes: ResMut<Assets<Mesh>>,
    mut materials: ResMut<Assets<StandardMaterial>>,
) {
    commands.spawn((
        PbrBundle {
            mesh: meshes.add(
                TryInto::<Mesh>::try_into(shape::Icosphere {
                    radius,
                    ..default()
                })),
            // ...
        },
        Health {
            max: 10.,
            current: 2.,
        },
        BarSettings::<Health> {
            width: 5.,
            offset: 2.,
            orientation: BarOrientation::Vertical, // default is horizontal
            ..default()
        },
    ));
}

Note the generic parameter of BarBundle. It is used to associate the configuration with the component it is tracking and necessary to support multiple bars per entity.

That's it! Updates to the values of your component will be automatically propagated through to the bar.

Examples

Examples can be found here. To run an example for web, first install cargo-make (cargo install cargo-make) and then call cargo make web <name-of-the-example, such as cargo make web dinosaurs

Dependencies

~39–80MB
~1M SLoC