Add dice roller
This commit is contained in:
10
Scripts/DiceRoller.gd
Normal file
10
Scripts/DiceRoller.gd
Normal 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)
|
||||
Reference in New Issue
Block a user