Ana içeriğe geç

TextDrawGetOutline

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the thickness of a textdraw's text's outline.

NameDescription
Text:textidThe ID of the textdraw to get the outline size of.

Returns

Returns the textdraw outline size.

Examples

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(100.0, 33.0, "Example TextDraw");
TextDrawSetOutline(gMyTextdraw, 1);

new outline = TextDrawGetOutline(gMyTextdraw);
// outline = 1
return 1;
}