Przejdź do głównej zawartości

TextDrawIsProportional

warning

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

Description

Checks if a textdraw is proportional.

Parameters

NameDescription
Text:textidThe ID of the textdraw to check.

Return Values

Returns true if the textdraw is proportional, otherwise false.

Example Usage

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(100.0, 33.0, "Example TextDraw");
TextDrawSetProportional(gMyTextdraw, true);

if (TextDrawIsProportional(gMyTextdraw))
{
// Textdraw is proportional
}
else
{
// Textdraw is not proportional
}
return 1;
}