godot-steering-ai-framework/project/demos/Utils/DemoInterface.gd
Nathan Lovato 68b85bb234 Format the code using gdformat
gdformat follows the official style guide, and handles line length and wrapping
lines for us.
2020-02-14 10:35:18 -06:00

14 lines
337 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