Ease of Building UI Elements in Unity
Getting started with UI element in Unity
Objective: Create some basics UI elements in Unity
One important part of every game or software in general is the UI, this is what gives feedback to the user to know what is the current state within the program.
Unity offers a set of UI elements very easy to create professional interfaces. To create an element you have to right click in the hierarchy > UI > and select the element you want to use in the interface. In this example I’m gonna create a Title with a text element.
When you create an UI element, Unity creates by deatul a UI canvas to contain all the UI elements and also creates an EventSystem to allow us to use interactive elements like buttons.
Each UI element has a series of components to modify its look. In this case I’m gonna use the anchors in the rect Transform to place the title in the middle and Text component to change the color and the size.
That’s how you can create UI elements in Unity, for more information use the link below.