Ugrás a fő tartalomhoz

IsValidTextDraw

vigyázat

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

Description

Checks if a textdraw is valid.

Parameters

NameDescription
Text:textidThe ID of the textdraw to check.

Return Values

Returns true if the textdraw is valid, otherwise false.

Example Usage

new Text:gMyTextdraw;

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

if (IsValidTextDraw(gMyTextdraw))
{
// Textdraw is valid
}
else
{
// Textdraw is not valid
}
return 1;
}