draw_enable_drawevent

Enables or disables the draw event.

Syntax:

draw_enable_drawevent(enable);


Argument Description
enable Enable (true) or disable (false) the draw event for all instances.


Returns: N/A


Description

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.


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.


Back: Drawing
Next: texture_get_width
© Copyright YoYo Games Ltd. 2018 All Rights Reserved