2024-06-07 17:31:08 +00:00
|
|
|
using System.Collections.Generic;
|
2024-06-06 13:36:22 +00:00
|
|
|
|
2024-06-03 18:26:03 +00:00
|
|
|
namespace BlueWater.Uis
|
|
|
|
{
|
2024-06-07 17:31:08 +00:00
|
|
|
public class MenuPopupUi : SwitchActionPopupUi
|
2024-06-03 18:26:03 +00:00
|
|
|
{
|
2024-06-07 17:31:08 +00:00
|
|
|
public override void Open(List<PopupUi> popupUiList)
|
2024-06-03 18:26:03 +00:00
|
|
|
{
|
2024-06-07 17:31:08 +00:00
|
|
|
base.Open(popupUiList);
|
2024-06-03 18:26:03 +00:00
|
|
|
VisualFeedbackManager.Instance.SetBaseTimeScale(0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Close()
|
|
|
|
{
|
|
|
|
base.Close();
|
2024-06-07 17:31:08 +00:00
|
|
|
VisualFeedbackManager.Instance.SetBaseTimeScale(1f);
|
2024-06-03 18:26:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|