mirror of
https://github.com/Relintai/Godot-TextEditor.git
synced 2025-02-04 19:15:54 +01:00
14 lines
246 B
GDScript3
14 lines
246 B
GDScript3
|
extends "res://addons/text_editor/TE_RichTextLabel.gd"
|
||
|
|
||
|
func msg(msg):
|
||
|
append_bbcode(str(msg))
|
||
|
newline()
|
||
|
|
||
|
func err(err):
|
||
|
append_bbcode(clr(err, Color.tomato))
|
||
|
newline()
|
||
|
|
||
|
func info(info):
|
||
|
append_bbcode(clr(info, Color.aquamarine))
|
||
|
newline()
|