CapersProject/Assets/02.Scripts/BlueWater/Ui/Popup/TutorialPopupUi.cs

31 lines
601 B
C#
Raw Normal View History

2024-12-16 12:06:42 +00:00
using UnityEngine;
2025-02-10 02:13:46 +00:00
namespace DDD.Uis
2024-12-16 12:06:42 +00:00
{
public class TutorialPopupUi : PopupUi
{
public override void Open()
{
2024-12-17 07:42:47 +00:00
PopupUiController.RegisterPopup(this);
gameObject.SetActive(true);
IsOpened = true;
2024-12-16 12:06:42 +00:00
}
public override void Close()
{
2024-12-17 07:42:47 +00:00
gameObject.SetActive(false);
PopupUiController.UnregisterPopup(this);
IsOpened = false;
2024-12-16 12:06:42 +00:00
}
public override void EnableInput()
{
}
public override void DisableInput()
{
}
}
}