-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.lua.sample
More file actions
23 lines (20 loc) · 1.5 KB
/
config.lua.sample
File metadata and controls
23 lines (20 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local addonName, addon = ...
local config = addon.config
config.position = {"TOP", UIParent, "BOTTOM", 0, 180} -- Anchor position, see http://www.wowwiki.com/API_Region_SetPoint
config.width = 250 -- Width of each bar
config.growUpwards = false -- Grow bars upwards
config.tallBarTexture = "Interface\\AddOns\\" .. addonName .. "\\media\\HalT" -- Texture to use for tall bars
config.shortBarTexture = "Interface\\AddOns\\" .. addonName .. "\\media\\HalW" -- Texture to use for short bars
config.borderTexture = "Interface\\AddOns\\" .. addonName .. "\\media\\HalBorderSmall" -- Texture to use for short bars
config.envenomColor = {{0/255, 255/255, 0/255}} -- color for the Envenom bar
config.vendettaColor = {{150/255, 150/255, 0/255}} -- color for the Vendetta bar
config.revealingColor = {{100/255, 0/255, 0/255}} -- color for the Revealing Strike bar
config.ruptureColor = {{200/255, 0/255, 0/255}} -- color for the Rupture bar
config.garotteColor = {{150/255, 0/255, 0/255}} -- color for the Garotte bar
config.recuperateColor = {{0/255, 150/255, 0/255}} -- color for the Recuperate bar
config.feintColor = {{21/255, 191/255, 180/255}} -- color for the Feint bar
config.closColor = {{175/255, 27/255, 224/255}} -- color for the Cloak of Shadows bar
config.vanishColor = {{100/255, 100/255, 100/255}} -- color for the Vanish bar
config.showFeintBar = false -- show a bar when Feint is active
config.showClosBar = false -- show a bar when Cloak of Shadows is active
config.showVanishBar = false -- show a bar when Vanish is active