draw_get_swf_aa_level

Get the current anti-aliasing level for SWF format vector sprites.

Syntax:

draw_get_swf_aa_level();


Returns: Real


Description

This function can be used to get the anti-aliasing (AA) level for SWF format vector sprites. The return value will between 0 and 1 and shows how "smooth" the edges of these sprites will be drawn. You can set the AA level using the function draw_set_swf_aa_level().


Example:

if draw_get_swf_aa_level() == 0
   {
   draw_enable_swf_aa(true);
   draw_set_swf_aa_level(0.5);
   }

The above code will check the AA value for SWF format sprites, and if it is 0 it enables AA and sets the value to 0.5.


Back: Drawing Sprites And Backgrounds
Next: draw_skeleton
© Copyright YoYo Games Ltd. 2018 All Rights Reserved