Merchant.anyUnholsteredItems
public bool anyUnholsteredItems { get; }Description#
Gets if any equipped items that can be holstered are not
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Merchant target) { bool result = target.anyUnholsteredItems; } }