示例#1
0
 public void GameOver()
 {
     GameOverObjs.ForEach(go => go.SetActive(true));
 }
示例#2
0
 void Start()
 {
     PauseObjs.ForEach(go => go.SetActive(false));
     GameOverObjs.ForEach(go => go.SetActive(false));
     ClearObjs.ForEach(go => go.SetActive(false));
 }