Add dice roller

This commit is contained in:
2022-09-07 11:52:26 -05:00
parent 5fd21eefeb
commit 19fc024b4c
3 changed files with 53 additions and 7 deletions

10
Scripts/DiceRoller.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Control
onready var rng = RandomNumberGenerator.new()
func _ready():
$Button.connect("pressed", self, "roll")
func roll():
$Dice1.frame = rng.randi_range(0, 6)
$Dice2.frame = rng.randi_range(0, 6)