mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-28 09:47:16 +01:00
15 lines
336 B
GDScript
15 lines
336 B
GDScript
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
|