Text Object Updating issues

I am very new to unity. I have two text objects being modified by one script, which reads data from a csv file. I also have another script which modifies text based on some math. The math script is modifying the text just fine, but the reader script isn’t. I figured it had to do something with the csv file, so I added an update function which just sets the text to the word “Updated”, but the text objects still didn’t change.

9144142–1270618–DataReader.cs (9.7 KB)

Welcome, it’s hard to say, maybe you forgot to attach the script the game object.

In any case, it’s useful to attach managed debugger and do step by step in script to figure out what’s wrong, alternatively you can call Debug.Log and see if the Editor console gets your message, which also can help to figure what’s the problem.

I was very tired when I wrote that. I forgot to mention that it works just fine in the editor, it’s when I build the app to an apk and install it that it stops working.