summaryrefslogtreecommitdiff
path: root/Primogemmes.gd
blob: 92242769ba042d1d785e693471086de062e26480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extends Label

@onready var ogtext = text
var count = 0


# Called when the node enters the scene tree for the first time.
func _ready() -> void:
	pass # Replace with function body.


# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta: float) -> void:
	text = ogtext + str(count)
	modulate.r = randi_range(0, 1)
	modulate.g = randi_range(0, 1)
	modulate.b = randi_range(0, 1)