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