Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove misleading sentence #39

Merged
merged 1 commit into from
Jan 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

## 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.
Health Bar plugin for Bevy 3D. 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.

<img src="https://github.com/sparten11740/bevy_health_bar3d/assets/2863630/31c50809-30f0-45fc-8639-054db7c96429" width="300" />

Expand Down Expand Up @@ -61,10 +59,7 @@ fn setup(
mut materials: ResMut<Assets<StandardMaterial>>,
) {
commands.spawn((
PbrBundle {
mesh: meshes.add(Sphere { radius }),
// ...
},
Mesh3d(meshes.add(Sphere { radius })),
Health {
max: 10.,
current: 2.,
Expand Down
Loading