Makinom - Game Toolkit for Unity
  • Features
  • Showcase
  • Guide
    • Documentation
    • Tutorials
    • Extensions
    • API
  • Makinom 1
    • Tutorials
    • Plugins
    • API
  • Support
  • Forum
  • Get Makinom

Guide

Schematics

  • Setting the Player
  • Simple Character Controller
  • Mouse Orbit Camera
  • Random Waypoints

Breakout

  • Breakout Tutorial Introduction
  • 01 First Steps
  • 02 Player Controls
  • 03 Bricks
  • 04 Losing a Life
  • 05 UI Setup
  • 06 Sound Assignments

Space Shooter

  • Space Shooter Tutorial Introduction
  • 01 First Steps
  • 02 Player Move Controls
  • 03 Player Weapon Controls
  • 04 Hit and Destroy
  • 05 Asteroids
  • 06 Game Controller
  • 07 UI Setup
  • 08 Player’s Destruction
  • 09 Enemy Ship Mechanics
  • 10 Enemy Ship
  • 11 Moving the Background

Match 3

  • Match 3 Tutorial Introduction
  • 01 First Steps
  • 02 UI Setup
  • 03 Generating the Level
  • 04 Matching Jewels
  • 05 Destroying Jewels
  • 06 Game Controls
  • 07 Jewel Setup

Survival Shooter

  • Survival Shooter Tutorial Introduction
  • 01 First Steps
  • 02 Player Movement
  • 03 Player Shooting
  • 04 Enemy Mechanics
  • 05 Setting up the Enemies
  • 06 UI Setup
  • 07 Player’s Death
  • 08 Enemy Spawner

2D Roguelike

  • 2D Roguelike Tutorial Introduction
  • 01 First Steps
  • 02 Generating the Level
  • 03 Level Generation Machines
  • 04 Player Controls
  • 05 Walls, Food and Exit
  • 06 Game Manager and UI Setup
  • 07 Enemy Mechanics
  • 08 Game Over

2D Platformer

  • 2D Platformer Tutorial Introduction
  • 01 First Steps
  • 02 Player Movement
  • 03 Camera and Background
  • 04 Shooting Rockets
  • 05 Enemy Mechanics
  • 06 Setting up the Enemies
  • 07 Enemy Spawners
  • 08 Player Damage and Fall Remover
  • 09 Health Pickup
  • 10 Bomb Pickup
  • 11 Bomb Prefabs and Lay Bombs
  • 12 Pickup Spawner
  • 13 UI Setup
  • 14 Background Animations
  • Home
  • Guide
  • Tutorials
  • 2D Roguelike
  • 02 Generating the Level

02 Generating the Level

Table of Contents
  • Random Placement: Schematic
    • Settings
      • Prefabs
    • Check Variables
    • Spawn Prefab
      • Position
    • Loop
  • Board Manager: Schematic
    • Settings
      • Machine Start Variables
      • Initial Local Variables
      • Prefabs
    • Fade Screen
    • Show Dialogue
    • Change Variables
    • Loop
    • Change Variables
    • Loop
    • Gate Entry (Layer Gate)
    • Change Variables
    • Check Variables
    • Spawn Prefab
      • Position
    • Spawn Prefab
    • Loop
    • Change Variables
    • Loop
    • Gate Entry (Layer Gate)
    • Start Tagged Machine
      • Machine Object
      • Starting Object
      • Tag Settings
    • Start Tagged Machine
    • Change Variables
    • Start Tagged Machine
    • Spawn Prefab
      • Position
    • Fade Screen
    • Change Game State

Setting up the procedural level generation.

In this tutorial we’ll set up schematics to generate the game level using sprite prefabs. We need 2 schematics, one for randomly spawning prefabs (walls, food, enemies) in the level and one for setting up the level.

Random Placement: Schematic #

First, we’ll create the schematic to randomly place game objects in the level. The objects will be placed on fixed positions – to prevent having 2 objects at the same position, we’ll make use of variable lists storing the positions.

The Vector3 variable list will be filled in a different schematic – this schematic only handles spawning prefabs at the positions and removing the used position.

Open the Makinom editor, navigate to Schematics and create a new schematic. Change the following settings.

Settings #

We need to add a prefab resource.

Prefabs #

We’ll be using the resource override to spawn different game objects with this schematic. Click on Add Prefab Resource to add a prefab resource.

There isn’t anything else to do – we’ll override the prefab in the tagged machines later.

Check Variables #

Add Node > Value > Variable > Check Variables

This node will check for variable conditions. We’ll use it to check if any game object should be spawned at all.

The objectCount variable defining the quantity of game objects we’ll spawn will be set by the tagged machines as local start variable.

Click on Add Variable to add a variable condition.

  • Condition Type
    Select Variable.
  • Variable Key
    Set to objectCount.
  • Variable Origin
    Select Local.
  • Is Valid
    Enable this setting.
  • Exists
    Enable this setting.
  • Type
    Select Int.
  • Check Type
    Select Is Greater.
  • Check Value
    Set to 0 (Value).

Spawn Prefab #

Add Node > Game Object > Prefab > Spawn Prefab

This node is used to spawn a prefab. We’ll use it to spawn a prefab at one of the Vector3 positions stored in the position local variable list.

It’s connected to the previous node’s Success slot.

  • Prefab
    Select Prefab 0.
  • Keep Reference
    Disable this setting.
  • Target Type
    Select Position.

Position #

  • Vector3 Type
    Select Vector3 Variable.
  • Variable Key
    Set to position.
  • Variable Origin
    Select Local List.
  • List Origin
    Select Random.
    A random value out of the list will be used.
  • Remove From List
    Enable this setting.
    The value will be removed from the list after we used it – this makes sure we don’t use the same position twice.

Loop #

Add Node > Base > Loop

This node is used to increase the counter until it reaches a maximum value. The objectCount variable defining the quantity of game objects we’ll spawn will be set by the tagged machines as local start variable.

This node’s Loop slot will be connected back to the Spawn Prefab node.

  • Max Count
    Select Variable > Int Variable.
  • Variable Key
    Set to objectCount.
  • Variable Origin
    Select Local.

The Variable Settings (Counter) define the variable we’re using as counter, it’ll be increased by 1 each time the node is used.

  • Reset
    Enable this setting.
    This will reset the count back to 0 when reaching the max count, making it ready for the next execution.
  • Variable Key
    Set to count.
  • Variable Origin
    Select Local.

That’s it for the schematic – click on Save Schematic and save it as RandomPlacement in Assets/Schematics/.

Board Manager: Schematic #

Next, we’ll create the schematic to set up the level. This schematic will fill the position list, create the floor and walls around the level, and start the tagged machines that’ll randomly place the other objects.

The level is set up using a defined number of rows and columns – they’ll be set up as local start variables of the machine. In the schematic, we’ll be going through the rows and columns field by field to generate positions and spawn prefabs.

The different tasks (filling the position list, creating floor and walls, randomply placing objects) will be set up on separate Node Layers. The node layer selection can be found in the upper right corner of the editor. You can connect node layers using Layer Gate nodes.

Create a new schematic and change the following settings.

The following nodes are placed in layer 0: Base Layer. Layer 0 is the default layer.

Settings #

We need to define 2 local start variables, initialize 2 local variables and 3 prefab resources.

Machine Start Variables #

We’ll set up local variables as Machine Start Variable for easy setup in the machine component at a later time. When using the schematic in a machine component, the defined start variables will be added automatically, using their default values.

Click on Add Start Variable to add a local start variable that will be exposed to the machine component’s inspector.

  • Variable Key
    Set to columns.
  • Type
    Select Int.
  • Default Value
    Set to 8.

Copy the previous start variable and change the following setting.

  • Variable Key
    Set to rows.

Initial Local Variables #

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to x.
  • Variable Origin
    Select Local.
  • Type
    Set to Int.
  • Operator
    Select Set.
  • Float Value
    Set to 1 (Value).

Copy the previous variable and change the following setting.

  • Variable Key
    Set to y.

Prefabs #

We need 3 prefab resources – the outer walls, the floor and the exit. Click on Add Prefab Resource to add the first prefab resource.

  • Name
    Set to Outer Wall.
  • Use Order
    Select Random.

We need 3 prefabs in this prefab resource, add the needed amount by clicking on Add Prefab.

  • Prefab
    Select OuterWall1, OuterWall2 and OuterWall3.
    The prefabs can be found at Assets/Tutorial Resources/Prefabs/.

Click on Add Prefab Resource again to add another prefab resource.

  • Name
    Set to Floor.
  • Use Order
    Select Random.

This time, we need 8 prefabs.

  • Prefab
    Select Floor1 to Floor8.

Click on Add Prefab Resource to add the last prefab resource.

  • Name
    Set to Exit.

There’s only one exit prefab, so we don’t need to add additional prefabs.

  • Prefab
    Select Exit.

Fade Screen #

Add Node > UI > Fade Screen

This node is used to fade the screen. We’ll use it to initially set the screen to black when the game first starts.

  • Wait
    Enable this setting.
  • Time (s)
    Set to 0.
  • Fade Alpha
    Enable this setting.
  • Start Color
    Select a black color without alpha (R=0, G=0, B=0, A=0).
  • End Color
    Select a black color with full alpha (R=0, G=0, B=0, A=255).

Show Dialogue #

Add Node > UI > Dialogue > Show Dialogue

This node is used to show a dialogue. We’ll use it to display the current day (level).

We’ll set up the actual UI box to display the message at a later time, but we already have the Default box available (which we’ll set up later).

  • Dialogue Type
    Select Auto Close.
    The dialogue will close automatically after some time.
  • UI Box
    Select Default.
  • Block Accept Button
    Enable this setting.
  • Close After (s)
    Set to 1.5.
  • Wait
    Enable this setting.
  • Text (Message Content)
    Set to:
    Day <var.int=level>

Change Variables #

Add Node > Value > Variable > Change Variables

We’ll use this node to add a position (Vector3) based on the local variables x and y to the position list.

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to position.
  • Variable Origin
    Select Local List.
  • List Change
    Select Add.
  • Type
    Select Vector3.
  • Operator
    Select Set.
  • Vector3 Type
    Select Value > Set Axis.

The X-axis will use the local int variable x.

  • X-Axis
    Select Variable > Int Variable.
  • Variable Key
    Set to x.
  • Variable Origin
    Select Local.

The Y-axis will use the local int variable y.

  • Y-Axis
    Select Variable > Int Variable.
  • Variable Key
    Set to y.
  • Variable Origin
    Select Local.

The Z-axis isn’t used, so we just set it to 0.

  • Z-Axis
    Set to 0 (Value).

Loop #

Add Node > Base > Loop

We’ll loop y until we reach rows – 1.

This node’s Loop slot will be connected back to the previous Change Variables node (adding a position).

  • Max Count
    Select Variable > Int Variable.
  • Variable Key (Max Count)
    Set to rows.
  • Variable Origin (Max Count)
    Select Local.
  • Math Function (Max Count)
    Select Minus One.
  • Reset
    Disable this setting.
  • Variable Key (Counter)
    Set to y.
  • Variable Origin (Counter)
    Select Local.

Change Variables #

Add Node > Value > Variable > Change Variables

Now, we’ll reset y to 1.

This node is connected to the previous node’s Finished slot.

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to y.
  • Variable Origin
    Select Local.
  • Type
    Select Int.
  • Operator
    Select Set.
  • Float Value
    Set to 1 (Value).

Loop #

Add Node > Base > Loop

We’ll loop x until we reach columns – 1.

This node’s Loop slot will be connected back to the first Change Variables node (adding a position).

  • Max Count
    Select Variable > Int Variable.
  • Variable Key (Max Count)
    Set to columns.
  • Variable Origin (Max Count)
    Select Local.
  • Math Function (Max Count)
    Select Minus One.
  • Reset
    Disable this setting.
  • Variable Key (Counter)
    Set to x.
  • Variable Origin (Counter)
    Select Local.

Gate Entry (Layer Gate) #

Next, we’ll add a Layer Gate node to the reach the next layer. This node is connected to the previous node’s Finished slot.

Right click on the Finished slot and select Add Node > Gate to Layer > Add New Layer. This will create a new layer and add a layer gate to it.

To display the new layer, either double click on the on the node’s title or select it in the layer popup field in the upper right corner of the editor.

You can rename the layer by clicking on the Rename Layer icon right of the popup field – e.g. name the layer Create Level. Clicking on the icon again will stop editing the layer’s name.

The following nodes are placed in layer 1: Create Level. In this layer, we’ll create the floor and walls around the level.

Change Variables #

Add Node > Value > Variable > Change Variables

First, we’ll set x and y to -1, because we also need to place floor and walls around the actual level (rows/columns).

This node is connected to Next slot of the Gate Exit from layer 0.

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to x.
  • Variable Origin
    Select Local.
  • Type
    Select Int.
  • Operator
    Select Set.
  • Float Value
    Set to -1 (Value).

Copy the previous variable change.

  • Variable Key
    Set to y.

Check Variables #

Add Node > Value > Variable > Check Variables

We’ll use this node to check if we’re at the outer edge of the level, i.e. if x or y are -1 or at their maximum (rows/columns)

  • Needed
    Select One.
    Only one of the conditions needs to be true to be at the outer edge.

Click on Add Variable to add a variable condition.

  • Condition Type
    Select Variable.
  • Variable Key
    Set to x.
  • Variable Origin
    Select Local.
  • Is Valid
    Enable this setting.
  • Exists
    Enable this setting.
  • Type
    Select Int.
  • Check Type
    Select Is Equal.
  • Check Value
    Set to -1 (Value).

Copy the previous variable condition and change the following settings.

  • Check Value
    Select Variable > Int Variable.
  • Variable Key
    Set to columns.
  • Variable Origin
    Select Local.

Again, copy the prevous variable condition.

  • Variable Key
    Set to y.
  • Check Value
    Set to -1 (Value).

Again, copy the previous variable condition.

  • Check Value
    Select Variable > Int Variable.
  • Variable Key
    Set to rows.
  • Variable Origin
    Select Local.

Spawn Prefab #

Add Node > Game Object > Prefab > Spawn Prefab

We’ll use this node to spawn an outer wall.

This node is connected to the Success slot of the previous node – i.e. the outer wall is spawned when we are at the edge of the level.

  • Prefab
    Select Prefab 0: Outer Wall.
  • Target Type
    Select Position.

Position #

  • Vector3 Type
    Select Value > Set Axis.

The X-axis will use the local int variable x.

  • X-Axis
    Select Variable >Int Variable.
  • Variable Key
    Set to x.
  • Variable Origin
    Select Local.

The Y-axis will use the local int variable y.

  • Y-Axis
    Select Variable >Int Variable.
  • Variable Key
    Set to y.
  • Variable Origin
    Select Local.

The Z-axis isn’t used, so we just set it to 0.

  • Z-Axis
    Set to 0 (Value).

Spawn Prefab #

Add Node > Game Object > Prefab > Spawn Prefab

This time, we’ll spawn the floor. Copy the previous node and change the following settings.

The first Check Variables node’s Failed slot is connected to this node, i.e. we’ll spawn a floor in any case.

  • Prefab
    Select Prefab 1: Floor.

Loop #

Add Node > Base > Loop

We’ll loop y until we reach rows + 1.

This node’s Loop slot will be connected back to the first Check Variables node (checking if it’s an outer edge before spawning the prefabs).

  • Max Count
    Select Variable > Int Variable.
  • Variable Key (Max Count)
    Set to rows.
  • Variable Origin (Max Count)
    Select Local.
  • Math Function (Max Count)
    Select Plus One.
  • Reset
    Disable this setting.
  • Variable Key (Counter)
    Set to y.
  • Variable Origin (Counter)
    Select Local.

Change Variables #

Add Node > Value > Variable > Change Variables

Now, we’ll reset y to -1.

This node is connected to the previous node’s Finished slot.

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to y.
  • Variable Origin
    Select Local.
  • Type
    Select Int.
  • Operator
    Select Set.
  • Float Value
    Set to -1 (Value).

Loop #

Add Node > Base > Loop

We’ll loop x until we reach columns + 1.

This node’s Loop slot will be connected back to the first Check Variables node (checking if it’s an outer edge before spawning the prefabs).

  • Max Count
    Select Variable > Int Variable.
  • Variable Key (Max Count)
    Set to columns.
  • Variable Origin (Max Count)
    Select Local.
  • Math Function (Max Count)
    Select Plus One.
  • Reset
    Disable this setting.
  • Variable Key (Counter)
    Set to x.
  • Variable Origin (Counter)
    Select Local.

Gate Entry (Layer Gate) #

Next, we’ll add a Layer Gate node to the reach the next layer. This node is connected to the previous node’s Finished slot.

Right click on the Finished slot and select Add Node > Gate to Layer > Add New Layer. This will create a new layer and add a layer gate to it.

To display the new layer, either double click on the on the node’s title or select it in the layer popup field in the upper right corner of the editor.

You can rename the layer by clicking on the Rename Layer icon right of the popup field – e.g. name the layer Random Placement. Clicking on the icon again will stop editing the layer’s name.

The following nodes are placed on layer 2: Random Placement. In this layer, we’ll start tagged machines, spawning the in-level walls, food and enemies.

Start Tagged Machine #

Add Node > Machine > Start Tagged Machine

This node is used to start a tagged machine. We’ll use it to start a tagged machine with the tag walls, which will use the RandomPlacement schematic to randomly place walls in the level.

This node is connected to the Next slot of the Gate Exit from layer 1.

  • Share Local Variables
    Enable this setting.
  • Wait
    Enable this setting.

Machine Object
#

  • Object
    Select Machine Object.

Starting Object #

  • Object
    Select Machine Object.

Tag Settings #

Click on Add Tag to add a starting tag.

  • Tag
    Set to walls.

Start Tagged Machine #

Add Node > Machine > Start Tagged Machine

We’ll use this node to start a tagged machine with the tag food, which will use the RandomPlacement schematic to randomly place food in the level.

Copy the previous node and change the following settings.

  • Tag
    Set to food.

Change Variables #

Add Node > Value > Variable > Change Variables

Before placing the enemies, we’ll set the objectCount for it in this schematic instead of the tagged machine as local start variables. The enemy count will be determined by the level used in a logarythmic calculation.

Click on Add Variable to add a variable change.

  • Change Type
    Select Variable.
  • Variable Key
    Set to objectCount.
  • Variable Origin
    Select Local.
  • Type
    Select Int.
  • Operator
    Select Set.
  • Float Value
    Select Variable > Int Variable.
  • Variable Key
    Set to level.
  • Variable Origin
    Select Global.

Copy the previous variable change.

  • Operator
    Select Log.
  • Float Value
    Set to 2 (Value).

Start Tagged Machine #

Add Node > Machine > Start Tagged Machine

We’ll use this node to start a tagged machine with the tag enemies, which will use the RandomPlacement schematic to randomly place enemies in the level.

Copy one of the previous Start Tagged Machine nodes, connect it to the Change Variable node’s Next slot and change the following settings.

  • Tag
    Set to enemies.

Spawn Prefab #

Add Node > Game Object > Prefab > Spawn Prefab

Now, we’ll spawn the exit at the upper right corner of the level (i.e. rows – 1 and columns – 1).

  • Prefab
    Select Prefab 2: Exit.
  • Target Type
    Select Position.

Position #

  • Vector3 Type
    Select Value > Set Axis.

The X-axis will use the local int variable x.

  • X-Axis
    Select Variable > Int Variable.
  • Variable Key
    Set to columns.
  • Variable Origin
    Select Local.
  • Math Function
    Select Minus One.

The Y-axis will use the local int variable y.

  • Y-Axis
    Select Variable > Int Variable.
  • Variable Key
    Set to rows.
  • Variable Origin
    Select Local.
  • Math Function
    Select Minus One.

The Z-axis isn’t used, so we just set it to 0.

  • Z-Axis
    Set to 0 (Value).

Fade Screen #

Add Node > UI > Fade Screen

Now it’s time to fade in the screen.

  • Wait
    Enable this setting.
  • Time (s)
    Set to 0.25.
  • Fade Alpha
    Enable this setting.
  • Start Color
    Select a black color with full alpha (R=0, G=0, B=0, A=255).
  • End Color
    Select a black color without alpha (R=0, G=0, B=0, A=0).

Change Game State #

Add Node > Game > Game > Change Game State

This node is used to change game states. We’ll use it to activate Game Running and In Control.

The game states are used to trigger the roguelike game mechanics – waiting for the player’s input and moving the enemies afterwards. This will be handled by later schematics.

Click on Add Game State to add a game state change.

  • Game State
    Select In Control.
  • Set State
    Select Active.

Click on Add Game State again to add another state change.

  • Game State
    Select Game Running.
  • Set State
    Select Active.

And that’s it for this schematic – click on Save Schematic and save it as BoardManager in Assets/Schematics/.

The next tutorial will handle adding the level generation machines.

Share This Article :
  • Facebook
  • Twitter
  • LinkedIn
  • Pinterest
Updated on January 5, 2021
Table of Contents
  • Random Placement: Schematic
    • Settings
      • Prefabs
    • Check Variables
    • Spawn Prefab
      • Position
    • Loop
  • Board Manager: Schematic
    • Settings
      • Machine Start Variables
      • Initial Local Variables
      • Prefabs
    • Fade Screen
    • Show Dialogue
    • Change Variables
    • Loop
    • Change Variables
    • Loop
    • Gate Entry (Layer Gate)
    • Change Variables
    • Check Variables
    • Spawn Prefab
      • Position
    • Spawn Prefab
    • Loop
    • Change Variables
    • Loop
    • Gate Entry (Layer Gate)
    • Start Tagged Machine
      • Machine Object
      • Starting Object
      • Tag Settings
    • Start Tagged Machine
    • Change Variables
    • Start Tagged Machine
    • Spawn Prefab
      • Position
    • Fade Screen
    • Change Game State
Sitemap
  • Features
  • Showcase
  • Guide
    • Documentation
    • Tutorials
    • Extensions
    • API
  • Makinom 1 Hub
    • Tutorials
    • Plugins
    • API
  • Support
  • Forum
  • Get Makinom
  • Contact
  • Blog
  • ORK Framework
  • gamingislove.com
Categories
  • Makinom 1 (97)
    • Tutorial (97)
      • 2D Platformer (14)
      • 2D Roguelike (8)
      • Breakout (6)
      • How-to (34)
      • Match 3 (6)
      • Schematic (4)
      • Scripting (6)
      • Space Shooter (11)
      • Survival Shooter (8)
  • News (11)
  • Release (68)
Search

© 2015 Gaming is Love e.U.

Disclosure: This site may contain affiliate links, which means I may receive a commission if you click a link and purchase something that I have recommended. While clicking these links won’t cost you any money, they will help me fund my development projects while recommending great assets!