Hey im making an eductaional game that asks questions and am trying to change the question to the next question based on the text that is inside the RichTextLabel. Im using this rn but it doesn't do anything???
var question1 = "What are the objectives of Financial Management?"
var question2 = "Placeholder"
func questionupdater():
if getnode("Question").text == question1:
getnode("Question").text = (str(question_2))
This is attached to a signal when a line edit node has text entered into it, but it just stays as the 1st question.