Extracts the green component from a packed RGBA value.
Parameter | Description |
---|---|
rgba | The packed RGBA value. |
Returns the green component of the color.
local color = Rgba(220, 64, 128, 255)
Print(Red(color))
Print(Green(color))
Print(Blue(color))
Print(Alpha(color))