Welcome to the Creatures Wiki! Log in and join the community.
Difference between revisions of "Keycodes"
Jump to navigation
Jump to search
(Created page) |
ScoobyGambit (talk | contribs) |
||
(One intermediate revision by one other user not shown) | |||
Line 3: | Line 3: | ||
For example, in the [[Creatures Evolution Engine]], event numbers 73 (Raw Key Down) and 74 (Raw Key Up) are passed a keycode in [[_P1_]]. | For example, in the [[Creatures Evolution Engine]], event numbers 73 (Raw Key Down) and 74 (Raw Key Up) are passed a keycode in [[_P1_]]. | ||
− | Keycodes | + | Keycodes map to [https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes Windows Virtual-Key Codes]. If a script needs text, it should use event 79 (Raw Translated Char) instead. |
+ | |||
+ | ==See also== | ||
+ | *[[Keyboard Shortcuts]] | ||
+ | |||
+ | [[Category:Internals]] |
Revision as of 23:03, 9 May 2020
In the Creatures games, keycodes are integers used in scripts that represent which keyboard keys are pressed.
For example, in the Creatures Evolution Engine, event numbers 73 (Raw Key Down) and 74 (Raw Key Up) are passed a keycode in _P1_.
Keycodes map to Windows Virtual-Key Codes. If a script needs text, it should use event 79 (Raw Translated Char) instead.