Skip to main content

PlayerTextDrawBoxColor

คำอธิบาย

Sets the color of a textdraw's box (PlayerTextDrawUseBox).

NameDescription
playeridThe ID of the player whose textdraw to set the box color of.
PlayerText:textThe ID of the player textdraw to set the box color of.
colorThe color to set. Alpha (transparency) is supported.

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

new PlayerText:pTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
pTextdraw[playerid] = CreatePlayerTextDraw(playerid, x, y, "...");
PlayerTextDrawUseBox(playerid, pTextdraw[playerid], true);
PlayerTextDrawBoxColor(playerid, pTextdraw[playerid], 0xFF0000FF); // Red box with no transparency
return 1;
}

ฟังก์ชั่นที่เกี่ยวข้องกัน