Przejdź do głównej zawartości

PlayerTextDrawAlignment

Description

Set the text alignment of a player-textdraw.

NameDescription
playeridThe ID of the player whose player-textdraw to set the alignment of.
PlayerText:textidThe ID of the player-textdraw to set the alignment of.
TEXT_DRAW_ALIGN:alignmentTEXT_DRAW_ALIGN_LEFT / TEXT_DRAW_ALIGN_CENTER / TEXT_DRAW_ALIGN_RIGHT

Returns

This function does not return any specific values.

Examples

/*
TEXT_DRAW_ALIGN_LEFT
TEXT_DRAW_ALIGN_CENTER
TEXT_DRAW_ALIGN_RIGHT
*/

new PlayerText:gMyTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
gMyTextdraw[playerid] = CreatePlayerTextDraw(playerid, 320.0, 425.0, "This is an example textdraw");
PlayerTextDrawAlignment(playerid, gMyTextdraw[playerid], TEXT_DRAW_ALIGN_CENTER); // Align the textdraw in the center
return 1;
}

Notes

warning

For alignment 2 (TEXT_DRAW_ALIGN_CENTER) the x and y values of TextSize need to be swapped, see notes at PlayerTextDrawTextSize.

wskazówka

If the textdraw is already shown for the player, it must be re-shown (PlayerTextDrawShow) to show the changes of this function.