Przejdź do głównej zawartości

GetPlayer3DTextLabelDrawDist

warning

This function is deprecated. Please see GetPlayer3DTextLabelDrawDistance.

Description

Gets the player's 3D text label draw distance.

NameDescription
playeridThe ID of the player.
PlayerText3D:textidThe ID of the player's 3D text label to get the draw distance of.

Returns

Returns the draw distance of the player's 3D text label as float.

Examples

new PlayerText3D:playerTextId;
new Float:X, Float:Y, Float:Z;
new Float:drawDistance;

GetPlayerPos(playerid, X, Y, Z);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, X, Y, Z, 40.0);

drawDistance = GetPlayer3DTextLabelDrawDist(playerid, playerTextId);
// drawDistance = 40.0

Notes

wskazówka

This function is just short name of GetPlayer3DTextLabelDrawDistance.