Enum PressBehavior
Determines how to trigger an action based on button presses.
Namespace: UnityEngine.InputSystem.Interactions
Syntax
public enum PressBehavior
Fields
Name | Description | Value |
---|---|---|
PressOnly | Perform the action when the button is pressed. Triggers performed when a control crosses the button press threshold. |
0 |
ReleaseOnly | Perform the action when the button is released. Triggers started when a control crosses the button press threshold and performed when the control goes back below the button press threshold. |
1 |
PressAndRelease | Perform the action when the button is pressed and when the button is released. Triggers performed when a control crosses the button press threshold and triggers performed again when it goes back below the button press threshold. |
2 |