PlayerTextDrawSetShadow

PlayerTextDrawSetShadow

Description:
Function PlayerTextDrawSetShadow adds a shadow to the bottom-right side of the text in a player-textdraw. The shadow font matches the text font.
Function PlayerTextDrawSetShadow was added in 0.3e and will not work in earlier versions!
The shadow can be cut by the box area if the size is set too big for the area.


Parameters:
(playerid, PlayerText:text, size)
int playerid The ID of the player whose player-textdraw to set the shadow size of.
int text The ID of the player-textdraw to change the shadow of.
int size The size of the shadow. 0 will hide the shadow.


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. This means the player-textdraw doesn't exist.


Examples:
new Text:MyTextDraw = CreatePlayerTextDraw(playerid, 100.0, 33.0, "Example Text");
PlayerTextDrawSetShadow(playerid, MyTextDraw, 1);


Related Functions
The following functions may be useful, as they are related to this function in one way or another.