2 days agoBuilt a Multi-Digit PIN Pad in UnityObjective: Build a pin pad and check to see if the pin is correct! Using buttons and some a little bit of coding, we can get a working pin system. To start we will need 12 buttons(if you want to use all digits) numbered 0–9.Gamedevhq4 min readGamedevhq4 min read
3 days agoCreating a dropdown difficulty systemObjective: Set up a Difficulty system using drop downs. To start go to the hierarchy and right click → UI → DropDown. I will be using the TextMeshPro DropDowns.Gamedevhq3 min readGamedevhq3 min read
4 days agoUsername/Password verification system in UnityObjective: Create a Username/Password verification system using Unity UI. To create a login/Create Account system, we will need four input fields, four buttons, and on debug text. After creating all of the objects, create two more empty objects. …Gamedevhq4 min readGamedevhq4 min read
Sep 11Build a math game in Unity in 5 minutesObjective: Make a math game quick. With one script, one button, one input field, two text’s, and two methods we can create a workable math game. To start Unity we will create a Input Field.Gamedevhq3 min readGamedevhq3 min read
Sep 8PIN Number verification in UnityObjective: Create a Pin system to verify pin is correct. We can use input fields to save pins and have them reenter them and verify it. To do this we will need two Input Fields. Create them by going in the Hierarchy and right click → UI → Input Field…Gamedevhq4 min readGamedevhq4 min read
Sep 7Saving data using Input FieldsObjective: Save data with Input Fields in Unity Unity has Input Fields that we can easily set up and type into! We will set up two Input Fields right over top of each other. To add InputFields, in the Hierarchy rightclick → UI → Input Field — TextMeshPro.Gamedevhq4 min readGamedevhq4 min read
Sep 6Make a slideshow using UI ScrollbarsObjective: Create a Slideshow using the Scrollbar. Scrollbars aren’t only used for text, we can use it to scroll through pictures. To get started, we will need the Images set up.Gamedevhq3 min readGamedevhq3 min read
Sep 5What are Content Fitters and Layout Groups?Objective: Cover what Content Fitters and Layout Groups are. Unity has a few components that help with content that is under UI. Our first one is the Content Fitter. Say for text, you create a new text object it’s typically small. If you add a lot of text into to…Gamedevhq3 min readGamedevhq3 min read
Sep 4Create a loading bar in UnityObjective: Create a loading bar! When we change scene’s, sometimes the scene will take a minute to load due to all the assets. We can use Scenemanager’s Load Scene Async to load the scene before switching scenes. Using this we can show progress with a slider. Unity - Scripting API: SceneManagement.SceneManager.LoadSceneAsync Suggest a change Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all…docs.unity3d.comGamedevhq3 min readGamedevhq3 min read
Sep 1Build an amazing health bar in UnityObjective: Create a health bar with UI system. Making a health bar is really easy. All that is needed is one script and a slider. You will see that I have two text already in the scene, these can be added if you want. …Gamedevhq4 min readGamedevhq4 min read