| 1234567891011121314151617181920212223 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PopupTest : MonoBehaviour
- {
- // Start is called before the first frame update
- void Start()
- {
- // PopupMgr.ins.ShowPKInviteNotice(10, "aaa", "邀请你过来", null);
- }
- int index = 0;
- float t = 0;
- void Update()
- {
- t += Time.deltaTime;
- if (t > 0.5) {
- t = 0;
- PopupMgr.ins.ShowTip("ttt" + index++);
- }
- }
- }
|