Ugrás a fő tartalomhoz

Is3DTextLabelStreamedIn

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 streamed in for a player.

NameDescription
playeridThe ID of the player.
Text3D:textidThe ID of the 3D text label.

Returns

This function returns true if the 3D text label is streamed in for the player, 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);
return 1;
}

public OnPlayerSpawn(playerid)
{
if (Is3DTextLabelStreamedIn(playerid, gMyLabel))
{
// Do something
}
return 1;
}