using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class TopManager : MonoBehaviour { public Text tname; public Text temail; private void OnEnable() { tname.text = DataManager.acc; temail.text = DataManager.email; } }