godot-steering-ai-framework/godot/Demos/Utils/DemoInterface.gd

14 lines
337 B
GDScript3
Raw Normal View History

tool
extends PanelContainer
export (String, MULTILINE) var text_bbcode := "" setget set_text_bbcode
onready var rich_text_label: RichTextLabel = $MarginContainer/RichTextLabel
func set_text_bbcode(value: String) -> void:
text_bbcode = value
if not rich_text_label:
yield(self, "ready")
rich_text_label.bbcode_text = text_bbcode