mlpcardgame/Scenes/Components/Stack.gd

9 lines
142 B
GDScript3
Raw Normal View History

2019-05-06 23:25:08 +00:00
extends Spatial
export var title: String
func _ready():
set_title(title)
func set_title(title: String):
$LabelViewport/Label.text = title