Game Toolkit for Unity
Setting up the turn based mechanic and UI prefabs.
In this tutorial we’ll set up the game manager, which will handle our simple turn based game mechanic. Also, we’ll set up the UI box we’re using and the HUD to display the player’s food.
If you remember, we’ve already set the Makinom project’s UI system to use the Unity UI module, i.e. we’ll do most of the setup in the scene, using components and the Unity UI. You can learn more about UI systems in general in this documentation, or about the Unity UI module in this documentation.
First, let’s set up the UI box, we’re already using it to show the day when loading the next level. At the end we’ll create a prefab out of our UI box setup and use it in the UI box in the Makinom editor.
The easiest way to set up a UI box is using the context menu in the scene hierarchy: Makinom > UI > UI Box > UI Box (TextMesh Pro)
Remove the Image and Vertical Layout Group components from the newly created UI box, we want to only show text, and at the center of the screen.
This already gives us all we need, but we can style it to our liking, e.g. change the position or size of the box, or change the font, font size or alignment.
We want the UI box to cover the whole screen.
I’ll change the text to be centered and use a larger font size – select the Text child object of the created UI Box game object and change the TextMesh Pro – Text (UI) component’s settings.
Also, set the Text child object’s Rect Transform to use the whole size of the UI box.
That’s it for the UI box – now create a prefab out of it by dragging the UI Box game object from the scene hierarchy to the project view, e.g. into a new folder in Assets/Tutorial Resources/Prefabs/UI/.
Now, we’ll set up the food HUD’s game object and components in the scene. At the end we’ll create a prefab out of our setup and use it in the HUD setup in the Makinom editor.
We’ll show them in the bottom center of the screen.
Use the context menu in the scene hierarchy to add a simple HUD: Makinom > UI > HUD > HUD
Change the newly created HUD’s Rect Transform:
Now move it to the bottom center of the canvas.
Add a HUD Text Content to the HUD using the scene hierarchy context menu: Makinom > UI > HUD > Content > Text Content (TextMesh Pro)
Adjust the new game object’s bounds to match the parent HUD’s bounds (or place it any way you like).
This component is responsible for setting the TextMesh Pro component’s text in the HUD, we’ll use a Makinom text code to show the value of our lives int variable.
You can display int variables using the text code <var.int=key>, replacing key with the variable key you want to show.
We’ll use a larger font size – select the Text child object of the created Text Content game object and change the TextMesh Pro – Text (UI) component’s settings.
That’s it for the HUD – now create a prefab out of it by dragging the HUD game object from the scene hierarchy to the project view (e.g. into Assets/Tutorial Resources/Prefabs/).
With that we’re done with the setup of our UI prefabs, but we need to clean up the Canvas and Event System that where created by Unity for our UI setup in the scene. In the scene hierarchy, select the Canvas and EventSystem game objects and delete them (e.g. via the Delete key).
Next we need to use the UI prefabs we just set up in Makinom.
Open the Makinom editor, navigate to UI > UI Box, select the Default UI box and change the following settings.
That’s it for the UI box.
Navigate to UI > HUDs and select the Default HUD that’s already been added in the initial project setup. Change the following settings.
We don’t want to display this HUD while changing scenes.
Click on Add Game State.
And that’s it for the UI setup – click on Save Settings to save the changes.
Next, we’ll create the schamtic handling the turn based game mechanic. The game manager will be started by a tick machine when the player isn’t in control.
Navigate to Schematics, create a new schematic and change the following settings.
Add Node > Base > Wait
WWe’ll use this node to wait for 0.1 seconds to have a small timeout between the player’s turn and the enemies.
Add Node > Machine > Start Tagged Machine
We’ll use this node to start all tagged machines in the scene with the tag enemy. This will cause the enemies to make their move (using a schematic we’ll set up later).
Click on Add Tag to add a starting tag.
Add Node > Game > Game > Change Game State
We’ll use this node to start the player’s turn again by activating the In Control state.
Click on Add Game State to add a game state change.
That’s it for the schematic – click on Save Schematic and save it as GameManager in Assets/Schematics/.
Finally, we’ll add the game manager schematic to the GameManager game object using a tick machine. The schematic will try to start each frame, but will only be able to when the player isn’t in control (and the game is running). This results in the player and enemies making their move turn after turn.
Add a tick machine component to the GameManager game object in the scene (e.g. using the component menu: Makinom > Machines > Tick Machine) and change the following settings.
Click on Add Condition, we’ll set up the game state condition here.
In the added Condition 0, we’ll set up our game state condition.
Copy the game state and change the following settings.
And that’s it for now – don’t forget to save the scene.
Click on Play to test the game. You’ll now be able to move through the level, chop down walls, collect food and move on to the next level through the exit. The food HUD and message between scenes are now also being displayed.
However, the enemies (which start spawning on day 2) are currently not moving or attacking the player …
The next tutorial will handle the enemy mechanics.