FromColor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 28: Line 28:
end
end
end
end
local color = tocolor(255, 0, 0, 255)
print(fromColor(color))
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Revision as of 13:21, 27 June 2019

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 blue = bitExtract(color, 0, 8)
		local green = bitExtract(color, 8, 8)
		local red = bitExtract(color, 16, 8)
		local alpha = bitExtract(color, 24, 8)
		
		return { red, green, blue, alpha }
	end
end

local color = tocolor(255, 0, 0, 255)
print(fromColor(color))

See Also

Shared