warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
Update3DTextLabelText
Description
Updates a 3D Text Label text and color.
Name | Description |
---|---|
Text3D:textid | The 3D Text Label you want to update. |
colour | The color the 3D Text Label should have from now on. |
const text[] | The new text which the 3D Text Label should have from now on. |
OPEN_MP_TAGS:... | Indefinite number of arguments of any tag. |
Returns
This function does not return any specific values.
Examples
new Text3D:mylabel;
public OnGameModeInit()
{
mylabel = Create3DTextLabel("I'm at the coordinates:\n30.0,40.0,50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Update3DTextLabelText(mylabel, 0xFF0000FF, "New text.");
return 1;
}
Notes
warning
If text[] is empty, the server/clients next to the text might crash! (Fixed in open.mp)
Related Functions
- Create3DTextLabel: Create a 3D text label.
- Delete3DTextLabel: Delete a 3D text label.
- Get3DTextLabelText: Gets the 3D text label text.
- Get3DTextLabelColour: Gets the 3D text label colour.
- Attach3DTextLabelToPlayer: Attach a 3D text label to a player.
- Attach3DTextLabelToVehicle: Attach a 3D text label to a vehicle.
- CreatePlayer3DTextLabel: Create A 3D text label for one player.
- DeletePlayer3DTextLabel: Delete a player's 3D text label.
- UpdatePlayer3DTextLabelText: Change the text of a player's 3D text label.