trying to test for player input, using if (VK_W)..., but it gives me an error and it says it is an undeclared identified. any clue whats going on?
thanks again.
This is a discussion on no VK_W? within the Windows Programming forums, part of the Platform Specific Boards category; trying to test for player input, using if (VK_W)..., but it gives me an error and it says it is ...
trying to test for player input, using if (VK_W)..., but it gives me an error and it says it is an undeclared identified. any clue whats going on?
thanks again.
They aren't defined.
You can use 'w' or 'W' to check or you can find the actual hex code from the wParam of a keydown. For w I believe its 0x57
cool, ill try that, thanks a lot.