Ugrás a fő tartalomhoz

IsValid3DTextLabel

vigyázat

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

Description

Checks if a 3D text label is valid.

NameDescription
Text3D:textidThe ID of the 3D text label to check.

Returns

This function returns true if the 3D text label is valid, or false if it is not.

Examples

new Text3D:gMyLabel;

public OnGameModeInit()
{
gMyLabel = Create3DTextLabel("I'm at the coordinates:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, false);

if (IsValid3DTextLabel(gMyLabel))
{
// Do something
}
return 1;
}