mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 15:44:21 +00:00
9 lines
157 B
GDScript
9 lines
157 B
GDScript
extends Node
|
|
|
|
|
|
@export var min_value: int
|
|
@export var max_value: int
|
|
|
|
|
|
func _ready():
|
|
get_parent().value = Randomizer.rng.randi_range(min_value, max_value)
|