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

22 lines
540 B
C#

using UnityEngine.InputSystem;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class CombatItemInventoryUi : ItemInventoryUi
{
public override void Close()
{
base.Close();
FindAnyObjectByType<PlayerInput>()?.SwitchCurrentActionMap(CombatInput.COMBAT);
}
protected override void InitAndUpdateInventory()
{
inventory = DataManager.Inst.CombatInventory;
base.InitAndUpdateInventory();
}
}
}