Revision Difference
DColorCube:GetRGB#550000
<function name="GetRGB" parent="DColorCube" type="panelfunc">
<ispanel>yes</ispanel>
<description>Returns the color cube's current set color.</description>
<realm>Client</realm>⤶
<realm>Client and Menu</realm>⤶
<rets>
<ret name="" type="table">The set color, uses <page>Color</page>.</ret>
</rets>
</function>
<example>
<description>Creates a color cube, sets the color to cyan, adjusts the saturation and value to 50% each, and prints out the final color.</description>
<code>
local color_cube = vgui.Create("DColorCube")
color_cube:SetSize(200, 200)
color_cube:Center()
-- Set color to cyan
color_cube:SetColor(Color(0, 255, 255))
-- 50% saturated, 50% valued
color_cube:TranslateValues(0.5, 0.5)
-- Print set color
PrintTable(color_cube:GetRGB())
</code>
<output>
```
r = 63
b = 127
a = 255
g = 127
```
</output>
</example>