Update3DTextLabelText ES
From SA-MP Wiki
Description:
Actualizacion de texto y color de un 3DTextLabel.
(Text3D:id, color, text[])
Text3D:id | La ID del 3DTextLabel a actualizar. |
color | El nuevo color del 3DTextLabel. |
text | El nuevo texto del 3DTextLabel. |
Retorno | Esta función no retorna un valor específico |
Ejemplo:
public OnGameModeInit() { new Text3D:mylabel; mylabel = Create3DTextLabel("Estoy en las coordenadas:\n30.0,40.0,50.0",0x008080FF,30.0,40.0,50.0,40.0,0); // Primero se creará ese 3DLabelText Update3DTextLabelText(mylabel, 0xFFFFFFFF, "New text."); // Y depués se actualizará el color y el texto return 1; }
Funciones relacionadas
Las siguientes funciones pueden ser útiles, ya que éstas están relacionadas con esta función de alguna u otra manera.
- Create3DTextLabel Crea un nuevo 3D text label.
- Delete3DTextLabel Elimina un 3D text label.
- Attach3DTextLabelToPlayer Atrae un 3D text label a un jugador.
- Attach3DTextLabelToVehicle Atrae un 3D text label a un vehiculo.
- UpdatePlayer3DTextLabelText Actualiza un 3d text label de un jugador.
- CreatePlayer3DTextLabel Crea un nuevo 3D text label a un jugador.
- DeletePlayer3DTextLabel Elimina un 3D text label existente de un jugador.