5 lines
112 B
GDScript
5 lines
112 B
GDScript
extends Label
|
|
|
|
|
|
func on_ammo_updated(ammo: int, remaining_ammo: int):
|
|
text = str(ammo)+"/"+str(remaining_ammo)
|