示例#1
0
 public void UpdateSettingMenu()
 {
     //打开设置提示栏
     settingMenu.UpdateActive();
     //禁用所有游戏控制
     if (settingMenu.GetMenuActive())
     {
         inputController.StopAll();
     }
     else
     {
         inputController.StartAll();
     }
 }