Unity is a powerful engine for game development that allows you to easily and efficiently create games
for various platforms. In this tutorial, we will learn in detail how to manage text in Unity and create
headings when necessary. Text is one of the key elements that enhances the realism of a game. Therefore,
it is very important to thoroughly understand how to use text as a UX/UI element.
1. Using Text in Unity
To use text in Unity, you need the ‘Text’ component. This component is part of the UI system provided by
Unity, allowing text to be displayed on the screen. You can also adjust the style, size, color, and more of
the text through various settings.
1.1 Adding a Text Component
To add a Text component, follow these steps:
- Right-click in the Hierarchy window and select UI > Text.
- The newly added Text object will be placed inside the Canvas.
- Open the Inspector window to check the Text component. Here you can adjust various properties.
2. Understanding Text Component Properties
The Text component consists of various properties that determine how the text looks and behaves. The main
properties include:
2.1 Text Property
The most basic property, ‘Text’, determines the content displayed on the screen. For example, if you enter
‘Hello, World!’, that content will appear on the screen.
2.2 Font Property
Use the Font property to select the font to be used for the text. In Unity, you can use custom fonts
through additional TTF or OTF files in addition to the default font.
2.3 Font Size
Font Size is the property that adjusts the size of the text. Increasing this value will make the text
larger, while decreasing it will make it smaller.
2.4 Color
The Color property determines the color of the text. You can set the desired color using RGB values, and
easily select colors using the ‘Color Picker’.
3. Creating Headings: A Practical Exercise
Now, let’s practice creating headings using the Text component we created.
Headings should be larger and more prominent than normal text, so we will choose a bolder font and increase
the size.
3.1 Generating Heading Text
First, add a UI text in the Hierarchy window, then start configuring it in the Inspector window.
Enter ‘Game Title’ in the ‘Text’ property.
3.2 Adjusting Properties
Now, select a font suitable for the heading in the Font property. For example, a font like ‘Arial Black’
may be appropriate. Then set the Font Size to 32 or 48 to make it stand out.
3.3 Setting Color
In the Color property, try selecting white (#FFFFFF) or bright yellow (#FFFF00). A color that is vibrant
and easily noticeable is preferred.
3.4 Aligning Text
You can align the text to the left, center, or right through the text alignment property. Headings are
typically more effective when center-aligned. Select ‘Center’ in ‘Alignment’.
4. Advanced Settings
After creating the heading and setting the basic properties, let’s take a look at additional advanced settings.
4.1 Adding Shadow to Text
By adding a shadow to the text, you can provide depth or enhance readability. To do this, add the
Shadow component. This component can be added below the Text to create a shadow effect.
Adding a shadow is quite simple: Select the heading text in the Hierarchy, click Add Component in the
Inspector window, and select Effects > Shadow. This will create a shadow beneath the
text. You can adjust the shadow’s color and direction to achieve the desired effect.
4.2 Text Animation
You can add animations to the text for a more dynamic effect. For example, you can set it to appear smoothly
when the heading comes onto the screen. To do this, use the Animator.
How to Set Up Animation:
- First, select the heading text and go to Window > Animation > Animation.
- In the Animation window, click the “+” icon to create a new animation clip.
- Name the animation, for example, “TitleAppear”.
- Add keyframes for adjusting the transparency of the text in the animation panel to create a fading effect.
5. Practical Example
Let’s look at various examples of using headings. For instance, let’s create a heading that says
“The Adventure Begins!” for the start screen of an RPG game.
Example: Creating an RPG Game Title Screen
1. Add a Text component as described above and input “The Adventure Begins!” in the Text property.
2. In the Font property, select a fun and adventurous font like ‘Bangers’.
3. Set the Font Size to 64 and choose a bright blue color (#00BFFF).
4. Set the text alignment to Center to position it in the middle of the screen.
Adding Animation Effects
If the heading has a slight bounce effect when it appears, it will be more interesting. To do this, add
keyframes to change the ‘Scale’ of the text using the animation technique described earlier.
6. Handling Fonts: Advanced Editing
The fonts used in a game greatly influence the user experience. Therefore, we will explore ways to use
custom fonts or modify fonts when necessary.
6.1 Importing Custom Fonts
To import custom font files (TTF or OTF), simply drag and drop the files into the ‘Assets’ folder of the
project. Then, you can select the newly added font in the Font property of the text component you wish to use.
6.2 Adjusting Font Style and Size
After using the custom font, you can still adjust the Font Size and proportions. However, it is important
to ensure the text remains legible.
7. Conclusion
In this tutorial, we covered a wide range of topics, starting with the basics of creating headings in
Unity, to advanced animations and using custom fonts. Text is a crucial element that enhances the appeal of
a game and improves user experience. Moreover, develop your sense of UI design and utilize various effects
to create more engaging games!
8. Additional Learning Resources
If you want to explore deeper methods for utilizing text in Unity, please refer to the following resources: