text_outline

Transparency of TEXT outline and shadow borders, in percent of the text's alpha value.

Range:

0..200 (default 100)

Type:

var

Edition:

A7.20

Example:

TEXT* mytext =
{
   pos_x = 10;
   pos_y = 10;
   font = "Arial#24";
   string("Test!");
   flags = OUTLINE | SHOW;
}

function main() 
{
   vec_set(screen_color,vector(250,200,150));
   text_outline = 50;
   ...
}

See also:

TEXT, flags, alpha

► latest version online