On this pageInteractorUI.holdingpublic bool holding { get; set; }CopyDescription#Get/Set if the interaction button is being heldUsage#Exampleusing NullSave.GDTK;using UnityEngine; public class ExampleScript : MonoBehaviour{ public InteractorUI source; private void Start() { Debug.Log(source.holding); } }Copy