InputBindingType
This enum is used by InputBinding.Type to determine whether the binding responds to hardware input or is driven programmatically.
Items 2
| History | Name | Value | Description | |
|---|---|---|---|---|
| 727 | Automatic | 0 | The InputBinding responds to physical input devices (keyboard, mouse, gamepad, touch) based on its KeyCode or composite direction properties. This is the default. | |
| 727 | Scriptable | 1 | The InputBinding ignores hardware input and instead receives state updates exclusively through the InputBinding:Fire() method. |
Description
This enum is used by InputBinding.Type to determine whether the InputBinding responds to hardware input devices or is driven programmatically via InputBinding:Fire().
History 3
- 727 Add Scriptable
- 727 Add Automatic
- 727 Add InputBindingType