HexToRGBA

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
HexToRGBA

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Converts an integer color value to the RGB format.

Syntax

HexToRGBA(HexColor)

Parameters

  • HexColor
    Color in integer format

Return Value

  • R, G, B, A values between 0 and 255

Example

function convertColor(hex)
    return r, g, b, a = HexToRGBA(hex)
end

See also