Bevy Progressbar

Generate progressbars in bevy ui from simple values. The progressbars can have multiple sections.

Install

rust cargo add bevy-progressbar

Usage

See examples for better understanding

```rust fn setup(mut commands: Commands, mut images: ResMut>) { commands.spawn( // progressbar size, width, height ProgressBarBundle::new(10000, 1000, 100, &mut images) .addsection(1000, Color::RED) .addsection(2000, Color::BLUE) .addsection(4000, Color::GREEN),

    ProgressBarBundle::new(10_000, 1000, 100, &mut images)
        .add_section(1000, Color::RED)
        .add_section(2000, Color::BLUE)
        .add_section(4000, Color::GREEN),
);

} ```

TODO