Anri/AdBlockNot
Archived
1
0
Fork 0
This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
AdBlockNot/scripts/ads/ads_roll.gd
2024-01-28 22:37:47 +01:00

21 lines
464 B
GDScript

extends "res://scripts/ads/ads_default.gd"
@onready var button := $ButtonDice/Button
@onready var label_left := $Dice/Left
@onready var label_right := $Dice/Right
func _ready():
label_left.text = "?"
label_right.text = "?"
func exit_condition():
return condition
func _on_button_pressed():
var left := randi_range(0, 6)
var right := randi_range(0, 6)
label_left.text = str(left)
label_right.text = str(right)
condition = left + right >= 8