using System.Collections; using System.Collections.Generic; using UnityEngine; public class IsLandFlowManager : MonoBehaviour { void Start() { Invoke("DelayScene", 3); Invoke("DelayTip", 6); } void DelayScene() { // UnityEngine.SceneManagement.SceneManager.LoadScene("02_MapScene"); XFrame.Core.UI.XUIPanel.ShowPanel("请查看任务书"); } void DelayTip() { XFrame.Core.UI.XUIPanel.ShowPanel(); } }