using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; namespace SoftKitty.InventoryEngine { public class ItemSlotsGrid : MonoBehaviour { void Awake() { if (GetComponent() && InventorySkin.instance != null) { GetComponent().cellSize *= InventorySkin.instance.InventorySlotScale; } } } }