This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Game/Assets/UI/MenuLineEdit.gd

11 lines
229 B
GDScript

extends "res://Assets/UI/MenuData.gd"
@export var text = "":
set(_text):
text = _text
$Label.text = _text
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.