Files
wow_Meta/api/GetItemQualityColor.lua
2025-05-04 14:35:26 +02:00

10 lines
528 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@param quality number
---@return number redComponent
---@return number greenComponent
---@return number blueComponent
---@return string hexColor
---Returns color values for use in displaying items of a given quality. Color components are floating-point values between 0 (no component) and 1 (full intensity of the component). Prior to 4.2 the hexColor return was prefixed with |c now it is just the hex codes for the color.
function GetItemQualityColor(quality) end