Hi!
Why does this works (i.e., changes the text of the question while playing)-
[SerializeField] TextMeshProUGUI questionText;
[SerializeField] QuestionSO question;
and this -
[SerializeField] QuestionSO question;
[SerializeField] TextMeshProUGUI questionText;
doesn’t (fails to change the text of the question while playing) ?
Thanks.