On this pageInputField.IsPressedDeclaration#public bool IsPressed()CopyDescription#Get if the input was down this frameUsage#Exampleusing NullSave.GDTK;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(InputField target) { bool result = target.IsPressed(); }}Copy