Hope this is the right place to ask 
I dropped a .txt file into my assets to create a text asset.
I have created a TMP(UGI) GameObject under a Canvas.
Is there a way to set the text in the new text asset to the TMP-UGI GameObject so the text displays onscreen.
I am not sure how to reference this text asset.
All attempts so far result in the default “New Text” showing on the screen when I press play.
Thanks 

Danny
I’m not sure if I understand correctly an I haven’t tested this piece of code but try something like this:
- put the text file in a folder named “Resources”
- load the text file in to some script memory
TextAsset textFile = Resources.Load("fileName") as TextAsset;
- Assign the textFile to TMP text element
yourTMPTextElement.text = textFile.text;
Thanks so much NanushTol 
That loaded the resource; I am still trying to figure out how I want to implement the text…
I appreciate your reply.
1 Like