mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-21 23:34:18 +00:00
6 lines
108 B
GDScript
6 lines
108 B
GDScript
extends Button
|
|
class_name ScoreButton
|
|
|
|
|
|
func set_score(total: int):
|
|
text = "$%0.2f" % (float(total) / 100)
|