9 lines
278 B
GDScript
9 lines
278 B
GDScript
extends Label
|
|
|
|
func _ready():
|
|
text = "GammaCosmicRays version {version}".format({"version" : Game.gameversion})
|
|
if OS.has_feature("editor"):
|
|
text += " uncompiled\nThis is a debug/prerelease version."
|
|
else:
|
|
if Game.beta:
|
|
text += " beta\nThis is a closed beta version."
|