FromColor

From Multi Theft Auto: Wiki
Revision as of 18:34, 25 September 2018 by .WhiteBlue (talk | contribs) (Created page with "__NOTOC__ {{Server client function}} This function converts the hexadecimal numbers of the specified colors ==Syntax== <syntaxhighlight lang="lua"> int fromColor ( color ) <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function converts the hexadecimal numbers of the specified colors

Syntax

int fromColor ( color )

Required Arguments

  • color: Values representing colors.

Returns

Returns an array containing colors (red, green, blue)

Example

Click to collapse [-]
Client

The following code inverts the tocolor function.

function fromColor(color)
	if color then
		local red = bitExtract(color, 0, 8)
		local green = bitExtract(color, 8, 8)
		local blue = bitExtract(color, 16, 8)
		local alpha = bitExtract(color, 24, 8)
		
		return { red, green, blue, alpha }
	end
end

See Also

Shared