• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Windows Testing problem: window goes fullscreen and cursor disappears

B

BFT

Guest
I posted this a while ago in conjunction with another error, but never received a response. Trying to test and publish an update to my game. Since I started work on version 1.1 (all work done in 2018), testing the game on Windows has been impossible. The game used to open in a small window with the aspect ratio of a smartphone screen (held vertically), and I could use my mouse in place of a finger for the touch controls. Now, however, the GMS2 runner window expands to take up the whole screen, and on top of that, the cursor disappears. This happens whether I am using the laptop display or a separate monitor, and this never happened when I was working on version 1.0. Has anyone experienced / found a fix for this?

Note that I just tried making a new test game, putting a few objects with sprites in it, and running it, and it worked just fine. It's only the existing project that won't work.
 
B

BFT

Guest
Checking back in. Still no response either time I've asked about this. Can anyone help me?
 
First, How Do You Have Your Game go into Fullscreen? in Code? or done through the Gms Settings
Settings is simple just check if the check box is filled for " Display Cursor ".​

code ?
after you have the window set to full screen use

window_set_cursor(cr_default);

But the real answer is in how you have the game enter full screen.
 
Last edited:
B

BFT

Guest
NightOwl, a HUGE thank you! You're right--there were two boxes in the Windows options (graphics tab) that I'd never noticed before. I unchecked the "start fullscreen" box and checked the "display cursor" box, and it's back to normal!

Many thanks, friend.

Cheers,

BFT
 
Top