HexToRGBA: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server & Client|1.0}} | {{Info|Function|Server & Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Converts Hex color value into RGB format}} | ||
{{FuncSyntax|HexToRGBA(HexColor)}} | {{FuncSyntax|HexToRGBA(HexColor)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|HexColor| | {{FuncParam|HexColor|Color in Hex format}} | ||
{{FuncReturnValue| | {{FuncReturnValue|R, G, B, A values between 0 and 255}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
function convertColor(hex) | |||
return r, g, b, a = HexToRGBA(hex) | |||
end | |||
AddCommand("objtest", cmd_objtest) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
__EDIT_ME__ | __EDIT_ME__ |
Revision as of 18:15, 13 November 2019
Description
Converts Hex color value into RGB format
Syntax
HexToRGBA(HexColor)
Parameters
- HexColor
Color in Hex format
Return Value
- R, G, B, A values between 0 and 255
Example
function convertColor(hex)
return r, g, b, a = HexToRGBA(hex)
end
AddCommand("objtest", cmd_objtest)
See also
__EDIT_ME__