Difference between revisions of "HoldKey - Input"
Jump to navigation
Jump to search
imported>JustinOther (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Input Script Holds a key until released by ReleaseKey. (This f...") |
imported>JustinOther m (Added required SKSE version) |
||
Line 3: | Line 3: | ||
[[Category:SKSE]] | [[Category:SKSE]] | ||
'''SKSE Member of:''' [[Input Script]] | '''SKSE Member of:''' [[Input Script]] | ||
{{SKSEFunction|1.05.04}} | |||
Holds a key until released by [[ReleaseKey - Input| ReleaseKey]]. (This function requires SKSE) | Holds a key until released by [[ReleaseKey - Input| ReleaseKey]]. (This function requires SKSE) |
Latest revision as of 16:03, 3 October 2012
SKSE Member of: Input Script
Minimum required SKSE Version: 1.05.04
Holds a key until released by ReleaseKey. (This function requires SKSE)
Syntax[edit | edit source]
Function HoldKey(Int dxKeycode) global native
Parameters[edit | edit source]
- dxKeycode: The DXScanCode of the key to hold.
Return Value[edit | edit source]
None
Examples[edit | edit source]
Input.HoldKey(42) ; Hold L-Shift
Notes[edit | edit source]
- None