mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
7 lines
163 B
GDScript
7 lines
163 B
GDScript
extends Label
|
|
|
|
func _ready():
|
|
var _connected = GameStats.connect("multiplier_changed", self, "update_text")
|
|
|
|
func update_text(value):
|
|
text = "x" + String(value)
|