|
@ -63,6 +63,17 @@ public class menuContrller : MonoBehaviour { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void panelSelect (string panel){ |
|
|
public void panelSelect (string panel){ |
|
|
|
|
|
|
|
|
|
|
|
btn_1player.GetComponent<Image> ().color = Color.grey; |
|
|
|
|
|
btn_2player.GetComponent<Image> ().color = Color.grey; |
|
|
|
|
|
btn_3player.GetComponent<Image> ().color = Color.grey; |
|
|
|
|
|
btn_4player.GetComponent<Image> ().color = Color.grey; |
|
|
|
|
|
p1Enabled = false; |
|
|
|
|
|
p2Enabled = false; |
|
|
|
|
|
p3Enabled = false; |
|
|
|
|
|
p4Enabled = false; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
menu.SetActive (false); |
|
|
menu.SetActive (false); |
|
|
options.SetActive (false); |
|
|
options.SetActive (false); |
|
|
levelSelect.SetActive (false); |
|
|
levelSelect.SetActive (false); |
|
@ -75,6 +86,7 @@ public class menuContrller : MonoBehaviour { |
|
|
|
|
|
|
|
|
if (panel == "menu") |
|
|
if (panel == "menu") |
|
|
menu.SetActive (true); |
|
|
menu.SetActive (true); |
|
|
|
|
|
|
|
|
if (panel =="options") |
|
|
if (panel =="options") |
|
|
options.SetActive (true); |
|
|
options.SetActive (true); |
|
|
if (panel == "levelSelect") { |
|
|
if (panel == "levelSelect") { |
|
@ -129,8 +141,9 @@ public class menuContrller : MonoBehaviour { |
|
|
control.p2Enabled = p2Enabled; |
|
|
control.p2Enabled = p2Enabled; |
|
|
control.p3Enabled = p3Enabled; |
|
|
control.p3Enabled = p3Enabled; |
|
|
control.p4Enabled = p4Enabled; |
|
|
control.p4Enabled = p4Enabled; |
|
|
|
|
|
|
|
|
Application.LoadLevel (level); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (p1Enabled || p2Enabled || p3Enabled || p4Enabled) |
|
|
|
|
|
Application.LoadLevel (level); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|