• 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!

Drawing Sprites while game is paused

Ketsuni

Member
Ok, basically.

To pause the game i'm making I use the code:

if(keyboard_check_pressed(ord("P"))){instance_create(0,0,Pause)}

And then, in the create action on Pause

instance_deactivate_all(true)

But when I do this, every instance Just stops being drawn. How can I pause the game, and still have the sprites beeing drawn?
 
Top