OldBlueWater/BlueWater/Assets/02.Scripts/Ui/CombatMenuPopupUi.cs
NTG 498162d4a8 TimeScale 기능 VisualFeedbackManager로 이동
+ 전투 맵 수정
+ CombatPlayer MainSkillUi 초기화 오류 수정
+ 메뉴UI Close버튼 미작동 수정
+ HitStop과 SlowMotion 겹치는 문제 수정
2024-05-13 16:21:45 +09:00

17 lines
419 B
C#

using UnityEngine.InputSystem;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class CombatMenuPopupUi : MenuPopupUi
{
public override void Close()
{
base.Close();
if (!CombatUiManager.Inst.IsPopupListEmpty()) return;
FindAnyObjectByType<PlayerInput>()?.SwitchCurrentActionMap(CombatInput.COMBAT);
}
}
}