Hey everyone!
I'm creating a diablo style chat box and am curious if it's possible to draw a background color behind a richt text label.
Infact, here is the script applied to my RichTextLabel:
extends RichTextLabel
func _ready():
pass
func _draw():
var r = Rect2( Vector2(0, 0), get_size() )
draw_rect(r, Color(0, 0, 0, 1) )
print("drawing for my rtl")
This actually draws the black background, but it draws it infront of the text.
Example:

I'm curious, is it possible to somehow re-order the draw order on a RichTextLabel, so the background is behind the text instead?