bevy_dice

Physics-based dice rolls for bevy.

https://user-images.githubusercontent.com/97428129/194188651-3a558020-bab3-4a77-b89b-5c69f445bcd4.mp4

Dependencies

toml bevy = { version = "0.8.1" } bevy_rapier3d = { version = "0.17.0" }

Usage

```rust use bevy::prelude::; use bevy_debug_text_overlay::{screen_print, OverlayPlugin}; use bevy_dice::{DicePlugin, DiceRollResult, DiceRollStartEvent}; use bevy_rapier3d::prelude::;

fn main() { App::new() .insertresource(AmbientLight { color: Color::WHITE, brightness: 1.0 / 5.0f32, }) .addplugins(DefaultPlugins) .addplugin(RapierPhysicsPlugin::::default()) .addplugin(DicePlugin) .addplugin(OverlayPlugin { fontsize: 32.0, ..default() }) .addstartupsystem(setupbutton) .addsystem(buttonsystem) .addsystem(displayrollresult) .run(); }

const NORMALBUTTON: Color = Color::rgb(0.15, 0.15, 0.15); const HOVEREDBUTTON: Color = Color::rgb(0.25, 0.25, 0.25); const PRESSED_BUTTON: Color = Color::rgb(0.35, 0.75, 0.35);

fn buttonsystem( mut interactionquery: Query< (Entity, &Interaction, &mut UiColor, &Children), (Changed, With