CapersProject/Assets/02.Scripts/Ui/Combat/GameOverPopupUi.cs
Nam Tae Gun c2f8f02328 버그 및 로직 수정
+ GameManager CurrentCombatPlayer 버그 및 로직 수정
+ 타이탄 슬라임 스프라이트 변경
+ Tycoon action 추가
+ JumpSlam 스프라이트 형식으로 변경
+ Npc 레이어 추가
2024-06-08 02:31:08 +09:00

21 lines
591 B
C#

using System.Collections.Generic;
namespace BlueWater.Uis
{
public class GameOverPopupUi : PopupUi
{
public override void Open(List<PopupUi> popupUiList)
{
base.Open(popupUiList);
VisualFeedbackManager.Instance.SetBaseTimeScale(0f);
PlayerInputKeyManager.Instance.DisableCurrentPlayerInput();
}
public override void Close()
{
base.Close();
PlayerInputKeyManager.Instance.EnableCurrentPlayerInput();
VisualFeedbackManager.Instance.SetBaseTimeScale(1f);
}
}
}