So in the case of doing this:
RichTextLabel.text = "Like really really new"
to:
RichTextLabel.bbcode_text = "Like really really new"
It did some weird things. For one I think it didn't recognize that the DialogueBox node existed, because the script is in the dialoguebox? I tried initializing it as a variable through
onready var DialogueBox =$DialogueBox
It wasn't able to find it. And thus crashed the debugging thing. Specifically saying Node Not found: "DialogueBox"
So instead I changed it to,
func _ready():
bbcode_text= "Hello I am new"
func _on_StartButton_pressed():
clear()
bbcode_text = "Like really really new"
Which if I changed it to this, it did type "Hello I am new" But it still didn't change the text in the Dialogue Box.
Would it be better if I just watched like a dialogue box tutorial for this instead and see if I can glean any any knowledge from it?