Difference between revisions of "GetMappedKey - Input"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JustinOther
(Fixed.)
 
imported>JustinOther
m (→‎Examples: Previous example assumed Input had been imported.)
Line 65: Line 65:


== Examples ==
== Examples ==
<source lang="papyrus">Int iForwardKey = GetMappedKey("Forward")</source>
<source lang="papyrus">Int iForwardKey = Input.GetMappedKey("Forward")</source>


== Notes ==
== Notes ==

Revision as of 17:00, 3 October 2012

SKSE Member of: Input Script

Minimum required SKSE Version: 1.06.00

Returns the DXScanCodes bound to a control for given device. (This function requires SKSE)

Syntax

Int Function GetMappedKey(String Control, Int DeviceType = 0xFF) Global Native

Parameters

  • Control: The name of the controls as a string. Valid controls listed below.
  • Activate
  • Auto-Move
  • Back
  • CameraPath
  • Console
  • Favorites
  • Forward
  • Hotkey1
  • Hotkey2
  • Hotkey3
  • Hotkey4
  • Hotkey5
  • Hotkey6
  • Hotkey7
  • Hotkey8
  • Journal
  • Jump
  • Left Attack/Block
  • Look
  • Move
  • Multi-Screenshot
  • Pause
  • Quick Inventory
  • Quick Magic
  • Quick Map
  • Quick Stats
  • Quickload
  • Quicksave
  • Ready Weapon
  • Right Attack/Block
  • Run
  • Screenshot
  • Shout
  • Sneak
  • Sprint
  • Strafe Left
  • Strafe Right
  • Toggle Always Run
  • Toggle POV
  • Tween Menu
  • Wait
  • Zoom In
  • Zoom Out
  • DeviceType: The device type used. Valid devices listed below.
  • 255 = Auto detect (Default)
  • 0 = Keyboard
  • 1 = Mouse
  • 2 = Gamepad

Return Value

Returns DXScanCode bound to a control for given device as an integer.

Examples

Int iForwardKey = Input.GetMappedKey("Forward")

Notes

None

See Also