+ GameManager CurrentCombatPlayer 버그 및 로직 수정 + 타이탄 슬라임 스프라이트 변경 + Tycoon action 추가 + JumpSlam 스프라이트 형식으로 변경 + Npc 레이어 추가
21 lines
591 B
C#
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);
|
|
}
|
|
}
|
|
} |