unity onmouseclick
using UnityEngine; using System.Collections; public class ClickUnpause : MonoBehaviour { void OnMouseClick() { MgrPause mgrPause = GetComponent<MgrPause>(); mgrPause.Resume(); } }
using UnityEngine; using System.Collections; public class ClickUnpause : MonoBehaviour { void OnMouseClick() { MgrPause mgrPause = GetComponent<MgrPause>(); mgrPause.Resume(); } }