12 lines
160 B
GDScript
12 lines
160 B
GDScript
@tool
|
|
extends HBoxContainer
|
|
|
|
@export var title : String = "" :
|
|
set(v):
|
|
title = v
|
|
if is_node_ready():
|
|
%Text.text = v
|
|
|
|
func _ready():
|
|
%Text.text = title
|