Inventory.GetEquipSlotClientsByGroup
#
Declarationpublic virtual List<EquipSlotClient> GetEquipSlotClientsByGroup(string groupName)
#
ParametersName | Description |
---|---|
groupName | Group to get |
#
DescriptionGet all EquipSlotClients associated with a group
#
Usageusing NullSave.GDTK.Inventory;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Inventory target) { List<EquipSlotClient> result = target.GetEquipSlotClientsByGroup(InventoryDatabase.instance.equipSlots[0].info.groupName); }
}