gd: added input addon

This commit is contained in:
2025-05-27 19:20:46 +02:00
parent d8a1604af9
commit c8d8c7ec25
683 changed files with 21608 additions and 2 deletions

View File

@ -0,0 +1,18 @@
@tool
extends MarginContainer
@onready var _label:Label = %Label
@export var text:String:
set(value):
text = value
_refresh()
func _ready():
_refresh()
func _refresh():
if _label != null:
_label.text = text