Using Unity's Package Manager to install TextMesh Pro.
Font a font online to bring into your project.
Create font atlas using the font you found and TextMesh Pro.
Create a TextMesh Pro text for your title.
Find a colour scheme you like and update the colours in your game.
After watching (learning outcomes)…
Know how to use TextMesh Pro and how to polish the look of your game.
(Unique Video Reference: 13_TX_CUD)
We would love to know…
What you found good about this lecture?
What we could do better?
Remember that you can reply to this topic, or create a new topic. The easiest way to create a new topic is to follow the link in Resources. That way the topic will…
You mention in the video that we could also use the Text Mesh Pro to put a custom text for our story text. When I try to do this the GameObject wont accept the new (text mesh pro) story text into the Text Component slot.
I’ve tried looking up a different thing to put there to make it work in Unity Docs but I couldn’t make it work. Could you explain how to use the text mesh pro text in the dynamic story text?
Ah yes, I mentioned that in a bit of an offhand way, my bad, I should have either not mentioned it, or explained it properly.
If you jump ahead to lecture 40 (called “Using ToString()” in the Number Wizard UI section) you’ll see my explanation.
What you need to do is use the namespace of TMPro and to make your variable of type TextMeshProUGUI instead of type Text. So add:
using TMPro;
and
[SerializeField] TextMeshProUGUI textComponent;
Alternatively, you could leave your code exactly as it is, and change your type from Text to GameObject. In this case, GameObject is a more general type that will allow you to drag any game object into the field in the inspector.
I found out after this lecture that the Text Mesh Pro is powerful and easy to use tool to polish your visuals. I am really tasteless when it comes to choosing color. Adobe Color CC helped me alot with that issue. Thanks a lot for this lecture, it really brings forward the design aspect of a game. Heres what I did for my game:
This is what I came up with and I have a question regarding it.
I used a lot of squares to create the background, which created a long list of objects under the Canvas tab. Is there a way to create a more organized list like merging the squares together or creating folders inside the regular hierarchy?
Yes, we’ll be covering those things as we progress through the course. For now, you can create empty game objects (right click in the hierarchy and create empty game object) which can serve as “folders” or organising objects.