CapersProject/Assets/02.Scripts/BlueWater/Ui/Popup/TutorialPopupUi.cs
2025-02-10 11:13:46 +09:00

31 lines
601 B
C#

using UnityEngine;
namespace DDD.Uis
{
public class TutorialPopupUi : PopupUi
{
public override void Open()
{
PopupUiController.RegisterPopup(this);
gameObject.SetActive(true);
IsOpened = true;
}
public override void Close()
{
gameObject.SetActive(false);
PopupUiController.UnregisterPopup(this);
IsOpened = false;
}
public override void EnableInput()
{
}
public override void DisableInput()
{
}
}
}