Przejdź do głównej zawartości

TextDrawGetColour

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the text colour of a textdraw.

NameDescription
Text:textidThe ID of the textdraw to get the colour of.

Returns

Returns the text colour of the textdraw.

Examples

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(123.0, 123.0, "Example");
TextDrawColour(gMyTextdraw, 0xFF0000FF);

new colour = TextDrawGetColour(gMyTextdraw);
// colour = 0xFF0000FF
return 1;
}