Build a Main Menu in Unity

Joseph Hibbs
Sep 24, 2023

--

Creating a UI Main Menu that scales with all aspects is very easy to do.

We start by creating a canvas and set it to scale with screen size with reference resolution set to 1920 x 1080.

Then we simply create our UI elements and place them at the positions we want with the anchors you want to apply them with. You can create things such as Images, Text, Buttons, Sliders, Drop down menus, etc.

Now we have a UI Design but not much functionality yet.

--

--