Difference between revisions of "GetNumKeysPressed"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Haama
(Fixed syntax)
imported>Quetzilla
 
(4 intermediate revisions by the same user not shown)
Line 7: Line 7:


==Notes==
==Notes==
 
* This function will count keys disabled with [[DisableKey]] or [[DisableControl]].
* This function will not pick up mouse buttons.
* This function will not count mouse buttons.  Use [[GetNumMouseButtonsPressed]] instead.
* Most keyboards can only keep track of a limited number of keys, and may return incorrect results for certain combinations of keys. This function will always accurately reflect how many keys direct input, and hence oblivion, can see as being pressed, but may not always reflect what the player is actually doing.
* Most keyboards can only keep track of a limited number of keys, and may return incorrect results for certain combinations of keys. This function will always accurately reflect how many keys direct input, and hence oblivion, can see as being pressed, but may not always reflect what the player is actually doing.


==See Also==
==See Also==
*[[GetKeyPress]]
*[[GetKeyPress]]
 
*[[GetNumMouseButtonsPressed]]


<!--[[Category: OBSE Functions]]
<!--[[Category: OBSE Functions]]

Latest revision as of 16:50, 3 August 2008

A command for Oblivion Script Extender

Syntax:

(count:long) GetNumKeysPressed

Retrieves the number of keyboard keys currently being pressed.

Notes[edit | edit source]

  • This function will count keys disabled with DisableKey or DisableControl.
  • This function will not count mouse buttons. Use GetNumMouseButtonsPressed instead.
  • Most keyboards can only keep track of a limited number of keys, and may return incorrect results for certain combinations of keys. This function will always accurately reflect how many keys direct input, and hence oblivion, can see as being pressed, but may not always reflect what the player is actually doing.

See Also[edit | edit source]