HexToRGBA: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server & Client|1.0}}


{{FuncSyntax|HexToRGBA(HexColor)
{{FuncDescription|Converts an integer color value to the RGB format.}}
}}
 
{{FuncSyntax|HexToRGBA(HexColor)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|HexColor|Color in integer format}}


{{FuncReturnValue|__MISSING_DOC__}}
{{FuncReturnValue|R, G, B, A values between 0 and 255}}


== Example ==
== Example ==
__MISSING_DOC__
<syntaxhighlight lang="Lua">
function convertColor(hex)
    return r, g, b, a = HexToRGBA(hex)
end
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
* [[RGB]]
* [[RGBA]]
* [[HexToRGBAFloat]]

Latest revision as of 17:36, 16 July 2020

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