mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-23 17:17:31 -04:00
9 lines
155 B
GDScript
9 lines
155 B
GDScript
extends RichTextLabel
|
|
|
|
|
|
func _ready() -> void:
|
|
finished.connect(to_line)
|
|
|
|
|
|
func to_line() -> void:
|
|
text = text.replace('\n', '\t') # TODO: Handle BBCode
|