Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#

Beginner Tutorial: A Unity 5 Number Guessing Game

Rate me:
Please Sign up or sign in to vote.
4.57/5 (4 votes)
25 Oct 2015CPOL4 min read 22.1K   349   4   3
In this tutorial, we will cover creating a simple number guessing game. The user will guess a number between 1 and 10.

Image 1

In this tutorial, we will cover creating a simple number guessing game. The user will guess a number between 1 and 10.

You can play the game live at the following link: http://www.adefwebserver.com/unity/numberguesserapp/

Image 2

The computer will tell the user if they are too high or too low.

Image 3

When the user guesses the number correctly, the computer will inform them, and the user can click the spacebar to play again.

Create The Game

image

The first step is to download and install Unity 5.

Open Unity and create a New Project.

Image 5

Call the project NumberGuesser, select 2D and click the Create project button.

image

When the project opens, click on the Main Camera. then in the Inspector, click on the background color.

When the Color popup opens, drag the dot to the upper left-hand corner of the color pallet to change the color to white.

Image 7

Click the Close button to close the Color popup.

Image 8

From the menu bar, select GameObject then UI then Text.

Image 9

A Canvas with a Text object and an EventSystem will appear.

Image 10

Hold the Alt and right click-drag to zoom out (or click in the scene and scroll out using your mouse wheel).

Zoom out until you can see the Text Box.

Image 11

Click on the Text Box and drag it until it is on the Canvas.

Image 12

Ensure that the Rect tool is selected.

Image 13

Select the Text Box, and in the Inspector:

  • Set the Width to 400 and the Height to 50
  • Set the Text to: Guess a number between 1 and 10
  • Set the Alignment to centered

Image 14

Click the Play button.

The text will display.

Image 15

Click the Play button again to stop the program and return to design mode.

Create The Code For The Game

Image 16

Select the Text Box, and in its properties (in the Inspector), select Add Component.

Scroll down to the bottom of the list and select the arrow next to New Script.

Image 17

Enter TextController for the Name, ensure C Sharp is selected for the language, and click the Create and Add button.

Image 18

The TextController script will be created and display in the Assets folder.

The script will also be attached to the TextBox.

Double-click on the TextController script in the Assets folder to open it.

Image 19

Visual Studio will start up…

Image 20

The script editor will open.

Change all the code to the following: 

using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class TextController : MonoBehaviour
{
    public Text objText;
    int intRandomNumber;
    int intGuessedNumber;

    // Use this for initialization
    void Start()
    {

    }

    // Update is called once per frame
    void Update ()

    {

    }
}

image

Basically we are adding two variables that we will later use (intRandomNumber and intGuessedNumber) and a public property that we will use to communicate with the Text element on the game screen (objText).

Image 22

Save the page…

image

Switch back to the Unity editor and click on the Text object in the Hierarchy to select it.

Drag the Text from the Hierarchy to the box next to Obj Text property in the Text Controller that is attached to the TextBox.

(This sets the Text Box as the objText property in the script we created. That script will set the text of the Text Box)

Switch back to Visual Studio and add the following method:

private void InitializeGame()
{
    // Pick a random number
    intRandomNumber = Random.Range(1, 10);

    // Set the text to start the game
    objText.text = "Guess a number between 1 and 10";
}

Next, update the Start method (that will run one time when the program is started) to the following code (to call the InitializeGame method we just created):

void Start()
{
    InitializeGame();
}

Image 24

If you have Visual Studio Tools for Unity installed, you can set a break point (by clicking in the grey area on the left-side of the code file) and then select Attach to Unity

Image 25

Switch back to the Unity editor and click the Play button…

Image 26

…And you will hit your break point.

Image 27

You can hit F5 to continue, and you will be switched back to the Unity game.

Image 28

For now, just select Stop Debugging from the Debug menu in Visual Studio.

Change the Update method to the following code:

// Update is called once per frame
void Update()
{
    // Hitting the spacebar always restarts the game
    if (Input.GetKeyDown(KeyCode.Space))
    {
        InitializeGame();
    }
}

This will call the InitializeGame method whenever the space bar is pressed.

That method will pick a new random number for the user to guess.

Add the following code to the Update method:

// Detect that a keystroke was pressed
if (Input.anyKeyDown)
{
    // Test to see if the keystroke was a number
    if (int.TryParse(Input.inputString, out intGuessedNumber))
    {
        if (intRandomNumber > intGuessedNumber)
        {
            objText.text =
                string.Format("You guessed {0}. You are too low"
                , intGuessedNumber);
        }

        if (intRandomNumber < intGuessedNumber)
        {
            objText.text =
                string.Format("You guessed {0}. You are too high"
                , intGuessedNumber);
        }

        if (intRandomNumber == intGuessedNumber)
        {
            objText.text =
                string.Format("You guessed {0}. \n You are correct! \n (press spacebar to continue)"
                , intGuessedNumber);
        }
    }
}

This will detect what key a user presses and compare that number to the random number created in the InitializeGame method.

If the correct number is guessed, the user is told to press the space bar to restart the game.

Links

Unity 5 Hello World!

Notes

Unity 5 (or higher) is required to run the sample code.


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) http://ADefWebserver.com
United States United States
Michael Washington is a Microsoft MVP. He is a ASP.NET and
C# programmer.
He is the founder of
AiHelpWebsite.com,
LightSwitchHelpWebsite.com, and
HoloLensHelpWebsite.com.

He has a son, Zachary and resides in Los Angeles with his wife Valerie.

He is the Author of:

Comments and Discussions

 
Questionreview Pin
dmjm-h26-Oct-15 15:02
dmjm-h26-Oct-15 15:02 
I got two takeaways from the article.
(1) Unity can be used to build the sort of games we programmed in Basic 30 years ago.
(2) Screenshots and instructions are a substitute for exposition.
AnswerRe: review Pin
defwebserver27-Oct-15 16:07
defwebserver27-Oct-15 16:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.