EquipSlotClient.UnholsterItem
Declaration#
public virtual void UnholsterItem()Description#
unholsters equipped item (if able)
Usage#
Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(EquipSlotClient target) { target.UnholsterItem(); }
}