Skip to main content

Inventory.GetEquipSlotClientsByGroup

Declaration#

public virtual List<EquipSlotClient> GetEquipSlotClientsByGroup(string groupName)

Parameters#

NameDescription
groupNameGroup to get

Description#

Get all EquipSlotClients associated with a group

Usage#

using 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);    }
}