1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
using Assets.Scripts.Utils;
public class Menu : MonoBehaviour {
// Use this for initialization
void Start () {
Screen.autorotateToLandscapeRight = true;
Screen.autorotateToLandscapeLeft = true;
Screen.orientation = ScreenOrientation.AutoRotation;
}
// Update is called once per frame
void Update () {
BackButtonHelper.quitOnBack();
}
public void OnButtonPlayClicked()
{
SceneManager.LoadScene("Main");
}
public void OnButtonScoreClicked()
{
SceneManager.LoadScene("Scores");
}
public void OnButtonScoresClicked()
{
SceneManager.LoadScene("Scores");
}
public void OnButtonInfoClicked()
{
Application.OpenURL("http://2016.igem.org/Team:Ionis_Paris");
}
}