Kain Nobel
Member
In my module, I created the easy FullScreen.toggle() method, which will min/maximize the screen if true/false is used as an argument.
Is there a way to check, either through Win32API or whatnot, if the Game.exe's screen is fullscreened or not?
I need this because the FullScreen.toggle() method can't actually tell if the game is fullscreened or not, and I can't seem to disable the ALT + Enter function which allows the player to manually fullscreen outside of my module.
Code:
FullScreen.toggle # Automatic toggle
FullScreen.toggle(true) # Sets it to full screen (if not already)
FullScreen.toggle(false) # Sets it to minimum (if not already)
Is there a way to check, either through Win32API or whatnot, if the Game.exe's screen is fullscreened or not?
I need this because the FullScreen.toggle() method can't actually tell if the game is fullscreened or not, and I can't seem to disable the ALT + Enter function which allows the player to manually fullscreen outside of my module.