22 lines
499 B
C#
22 lines
499 B
C#
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<TipPanel>("请查看任务书");
|
|
}
|
|
void DelayTip()
|
|
{
|
|
XFrame.Core.UI.XUIPanel.ShowPanel<AssignmentPanel>();
|
|
}
|
|
}
|