TextDrawUseBox ES
From SA-MP Wiki
Description:
Activar/desactivar caja a un TextDraw.
(Text:text, use)
Text:text | La ID del textdraw a editar. |
use | 1 muestra la caja, 0 la oculta. |
Retorno | Esta función no retorna un valor específico |
MyTD = TextDrawCreate(40.0, 140.0,"_~N~Example text!~N~_"); TextDrawUseBox(MyTD , 1); TextDrawFont(MyTD , 1); TextDrawLetterSize(MyTD ,0.3,1); TextDrawSetShadow(MyTD ,1); TextDrawSetOutline(MyTD ,1); TextDrawBackgroundColor(MyTD ,0x000000FF); TextDrawBoxColor(MyTD ,0x00000066); TextDrawColor(MyTD ,0x000000FF); TextDrawTextSize(MyTD , 200.0, 200.0);
Funciones relacionadas
Las siguientes funciones pueden ser útiles, ya que éstas están relacionadas con esta función de alguna u otra manera.
- TextDrawCreate Crea un nuevo textdraw.
- TextDrawDestroy Destruye un textdraw.
- TextDrawColor Cambia el color del texto de un textdraw.
- TextDrawBoxColor Cambia el color de la caja de un textdraw.
- TextDrawBackgroundColor Cambia el color de fondo de un textdraw.
- TextDrawAlignment Setea la alineación de un textrdraw.
- TextDrawFont Cambia la fuente del texto de un textdraw.
- TextDrawLetterSize Cambia la altura y espesor de las letras de un textdraw.
- TextDrawTextSize Cambia el tamaño de un textdraw.
- TextDrawSetOutline Agrega una linea negra externa a un textdraw.
- TextDrawSetShadow Cambia la sombra de un textdraw.
- TextDrawSetProportional Escala el tamaño del texto de un textdraw a una relacion proporcional.
- TextDrawSetString Cambia el texto de un textdraw.
- TextDrawShowForPlayer Le muestra un textdraw a un jugador.
- TextDrawHideForPlayer Le oculta un textdraw a un jugador.
- TextDrawShowForAll Le muestra un textdraw a todos los jugadores.
- TextDrawHideForAll Le oculta un textdraw a todos los jugadores.