draw_enable_drawevent

With this function you can choose to enable (true) or disable (false) the draw event for all instances in the game, thus giving you control over how and when things are draw, useful if you wish to implement a "frame skip" technique. Note that this doesn't just prevent instances drawing to the screen, it suppresses the draw event completely meaning that care should be taken since any game logic that is present in that event will not be run either. One important thing to understand about this function is that if you call it right at the start of the game, before the initial frame is rendered (ie: the Create Event of the first object in the first room of the game), then the game window will not be rendered. This could be useful for online projects that require a server which doesn't need to render anything.

 

Syntax:

draw_enable_drawevent(enable);

Argument Description
Enable Set to true or false.

 

Returns:

N/A

 

Example:

frame_skip ++;
if (frame_skip mod 5) == 0
    {
    draw_enable_drawevent(true);
    }
else
    {
    draw_enable_drawevent(false);
    }

The above code checks a variable and if it returns true, it enables the draw event, otherwise the draw event is disabled.