SkRemap: Difference between revisions

From Trickstart wiki
(Created page with " skRemap allows user to remap keys used in the game (3D part of the game). Names of keys are the same as names of the constants on the https://docs.microsoft.com/en-us/window...")
 
No edit summary
Line 2: Line 2:
skRemap allows user to remap keys used in the game (3D part of the game).
skRemap allows user to remap keys used in the game (3D part of the game).


Names of keys are the same as names of the constants on the https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes page, except without <code>VK_</code> and case-insensitive. So if the constant is <code>VK_NUMPAD6</code>, it can be written as, for instance, <code>NUMPAD6</code>,<code>numpad6</code> , or <code>NuMpAd6</code>.
Names of keys are the same as names of the constants on the https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes page, except without <code>VK_</code> and case-insensitive.
 
So if the constant is <code>VK_NUMPAD6</code>, it can be written as, for instance, <code>NUMPAD6</code>,<code>numpad6</code> , or <code>NuMpAd6</code>.

Revision as of 20:22, 16 April 2022

skRemap allows user to remap keys used in the game (3D part of the game).

Names of keys are the same as names of the constants on the https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes page, except without VK_ and case-insensitive.

So if the constant is VK_NUMPAD6, it can be written as, for instance, NUMPAD6,numpad6 , or NuMpAd6.