15 lines
246 B
C#
15 lines
246 B
C#
using UnityEngine;
|
|
|
|
namespace AZTECHWB.UI
|
|
{
|
|
public class LayerPanel : UIPanel
|
|
{
|
|
public override void Open()
|
|
{
|
|
gameObject.SetActive(true);
|
|
gameObject.transform.SetAsLastSibling();
|
|
}
|
|
}
|
|
}
|
|
|