Created
January 16, 2012 10:14
-
-
Save Azerothian/1620120 to your computer and use it in GitHub Desktop.
Inputreader Win32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Will capture the Inputs correctly // Mouse will dissappear | |
_inputReader.Initialize(_renderWindow, true, true, false, true); | |
_inputReader.UseKeyboardEvents = false; | |
_inputReader.UseMouseEvents = false; | |
// Mouse will not dissappear // will not fire off click events | |
_inputReader.Initialize(_renderWindow, true, true, false, true); | |
_inputReader.UseKeyboardEvents = true; | |
_inputReader.UseMouseEvents = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment