InputChordUtils
Standardized data type to define an input chord, such as Ctrl+Z.
Types
ModifierInputChord
type ModifierInputChord = {type: "ModifierInputChord",modifiers: {Enum.KeyCode},keyCode: Enum.KeyCode}A modifier input chord data type that separates keyCode from modifier keys.
Functions
isModifierInputChord
InputChordUtils.isModifierInputChord(data: any) → booleanChecks
createModifierInputChord
Creates a modifier input chord. This chord specifically separates the order such that the event only triggers when the keyCode is pressed, but also requires the modifier key to be down at the trigger point.
This mirrors the existing modifier standards for Windows.