2026-03-28 인벤토리 90%

This commit is contained in:
2026-03-28 15:31:27 +09:00
parent 2050772614
commit 7fe45db079
290 changed files with 18921 additions and 250 deletions

View File

@@ -6,7 +6,6 @@
public class InventoryManager : MonoBehaviour
{
[SerializeField] private GameObject _inventoryRoot;
[SerializeField] private GameObject _inventoryContentRoot;
[SerializeField] private GameObject _slotPrefab;
@@ -51,21 +50,6 @@ private void Start()
{
}
public void InventoryToggle()
{
if (_inventoryRoot != null)
{
InventoryOnOff(!_inventoryRoot.activeSelf);
}
}
public void InventoryOnOff(bool onOff)
{
if (_inventoryRoot != null)
{
_inventoryRoot.SetActive(onOff);
}
}
public void UpdateUI()
{