What you need to know?

Here’s the list of things that you need to know before reading further:

Here we will focus on how, and why you can configure your levels in detail.

Why I Need To Do That?

It’s necessary step if you want to create level select screen in the first place. This configuration defines level order and associated scenes. If you want to use Mad Level Manager only to create level selectors, this is when you may stop your reading, but level configurations are something more. They give you ability to define workflow, and it may be different depending on what version of your game you are releasing.

For instance let’s imagine that you have right to release new version of Angry Birds and it’s going to be paid. Also you want to release a demo version with only 5 playable levels. To do so you will create two level configurations. First will contains all available game levels. The second one will have only 5 levels, and after fifth one “buy now” screen will appear. Know what? You don’t need to do any changes in your code when building first and second version! All you need to do is to switch between active level configurations just before building your game!

Sounds interesting? And it’s easy to achieve too! Just learn how level configuration works and learn to use MadLevel API.

Change of Abstraction Level

First you need to know that Mad Level Manager changes definitions of what level is. Unity3D documentation defines levels and scenes more or less as one and the same. Function that load scene is named Application.LoadLevel(). Mad Level Manager defines levels as abstract entity – one scene may represent many levels. One scene may load different data file to decide how it should be initialized, so it will become different level.

Level Types

You can choose from 3 types for each level in your configuration. These are:

  1. Level – This is regular playable game level. It will be displayed in level select screen.
  2. Extra – This is playable game level, but it won’t be displayed in level select screen. You can treat it as hidden level.
  3. Other – This is all other scenes that are not really playable. This will be your title screen, options screen, level select screen, scores screen, etc. Of course it won’t be displayed in level select screen.

Defining level types are important not only because of level select screen. If you take good look at MadLevel API, then you can note that you can jump between levels based on their type. This gives you easy method of creating great, flexible workflows, and your designers don’t even need to know how it works!

Using Arguments

Level argument line is something what can transform one scene into many levels. Imagine Sudoku game where all levels look the same, except numbers on the grid are different. It will be wise to use only one scene for all your levels, and just pass data file name in argument line. Only one scene means that if you decide to change something in how your levels looks, you can do this on just one scene, because you don’t need to have more than one of them.

Argument levels are accessible using MadLevel API through field MadLevel.arguments.

Credits