bevy_dice

Physics-based dice rolls for bevy. This is a work in progress. You can you this plugin to build tabletop games.

https://user-images.githubusercontent.com/97428129/194198974-239a14d2-0056-45c0-982f-06f9604cc5d1.mp4

Dice rolls are performed in a physical space, rendered to a image handle which you can display in your UI when dice rolls are needed. Results are emmited as events, so you can listen for them and perform actions based on the result.

Dependencies

| Name | Version | | ------------- | ------- | | bevy | 0.8.1 | | bevy_rapier3d | 0.17.0 |

Usage

```rust use bevy::prelude::; use bevy_debug_text_overlay::{screen_print, OverlayPlugin}; use bevy_dice::{DicePlugin, DicePluginSettings, 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(OverlayPlugin { fontsize: 32.0, ..default() }) .addplugin(DicePlugin) .insertresource(DicePluginSettings { numdice: 1, rendersize: (512, 512), renderhandle: None, }) .addstartupsystem(setup.after("diceplugininit")) .addsystem(buttonsystem) .addsystem(displayroll_result) .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