Godot-TextEditor/addons/text_editor/TE_Console.gd
teebarjunk dfe30486d2 1.10
2021-11-27 05:35:18 -05:00

18 lines
276 B
GDScript

tool
extends "res://addons/text_editor/TE_RichTextLabel.gd"
func _ready():
clear()
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()