LoginUPError.cs 521 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class LoginUPError : MonoBehaviour
  5. {
  6. public float times;
  7. private void OnEnable()
  8. {
  9. times = 0;
  10. }
  11. private void Update()
  12. {
  13. times += Time.deltaTime;
  14. if (times >= 3)
  15. {
  16. times = 0;
  17. gameObject.SetActive(false);
  18. }
  19. }
  20. private IEnumerator CloseShwo()
  21. {
  22. yield return new WaitForSeconds(3f);
  23. gameObject.SetActive(false);
  24. }
  25. }