InteractorUI.timeHeld
public float timeHeld { get; set; }Description#
Get/Set the amount of time the interaction button has been held
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class ExampleScript : MonoBehaviour{
public InteractorUI source;
private void Start() { source.timeHeld = 0.5f; }
}