//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Monday, November 27, 2017
|
//--------------------------------------------------------
|
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Text;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
//关于寻路图标的显示
|
namespace Snxxz.UI {
|
|
public class PathfindingIconWin : Window
|
{
|
[SerializeField] UIEffect uiEffect;
|
#region Built-in
|
protected override void BindController()
|
{
|
}
|
|
protected override void AddListeners()
|
{
|
}
|
|
protected override void OnPreOpen()
|
{
|
uiEffect.Play();
|
}
|
|
protected override void OnAfterOpen()
|
{
|
}
|
|
protected override void OnPreClose()
|
{
|
uiEffect.Stop();
|
}
|
|
protected override void OnAfterClose()
|
{
|
}
|
|
#endregion
|
|
}
|
|
}
|