示例#1
0
 public void SetComputer()
 {
     PLAYER        = "COMPUTER";
     PlayerVisible = !PlayerVisible;
     BT_LEVEL.GetComponent <Button> ().interactable = true;
 }
示例#2
0
 public void SetSingle()
 {
     PLAYER        = "SINGLE";
     PlayerVisible = !PlayerVisible;
     BT_LEVEL.GetComponent <Button> ().interactable = false;
 }
示例#3
0
 public void SetPlayer2()
 {
     PLAYER        = "PLAYER 2";
     PlayerVisible = !PlayerVisible;
     BT_LEVEL.GetComponent <Button> ().interactable = false;
 }