using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class PauseContorl : MonoBehaviour { bool isGamePause; //游戏暂停按钮 private GameObject pauseButtonObj; //当前暂停按钮的图片 private Image currentPauseImage…