using System.Collections; using System.Collections.Generic; using MotionFramework; using UnityEngine; using UnityEngine.UI; /// /// 邮件 /// public class EMailManager : MonoBehaviour { private void Awake() { this.GetComponent().onClick.AddListener(HideUI); } private void HideUI() { Debug.Log("点击了"); MotionEngine.GetModule().JumpToMail(); } }