...from one Map-level to open second Map-Level ...

Coz im begginer, How to setup to: from one Map-level to open second Map-Level with click on one button? Probably some thing with coding, right? Or maybe somehow using this UI tools?

You can use the UI tools to make the button, but you’d need a simple script to wire the button up to, yes. The script can be very simple and just call Application.LoadLevel.

1 Like

As superpig said, you will need a very simple script and then you can call the function using the gui. I attach a screenshot and some code to show this. Please note the level is set using the inspector as a public variable.

using UnityEngine;
using System.Collections;

public class ButtonLoadLevel : MonoBehaviour
{


        public int level;

        public void Click ()
        {

                //Load level set on the inspector
                Application.LoadLevel (level);
        }

}

1 Like

Thanx guys:)