Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

Sets the color of a StatusBar object.

StatusBar:SetStatusBarColor(r, g, b, [a])

Arguments[]

(r, g, b, [a])
r
Number - The red value of the color
g
Number - The green value of the color
b
Number - The blue value of the color
a
Number - The alpha value of the color (Optional). If not specified, the alpha defaults to 1.

Returns[]

nil

Example[]

playerHealthBar:SetStatusBarColor(170/255, 10/255, 10/255);
Result
Sets the color of the status bar to a deep red

Notes[]

r, g, b values are fractions of 255 and must be in the range of [0, 1]. For example, r = 100/255.

Advertisement