using System.Collections; using System.Collections.Generic; using UnityEngine; public class showTip : MonoBehaviour { private void OnEnable() { Invoke("close",2f); } public void close() { this.gameObject.SetActive(false); } }