ItemInteractorUI.holding
public bool holding { get; set; }Description#
Get/Set if the interaction button is being held
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(ItemInteractorUI target) { bool result = target.holding; } }