-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
executable file
·35 lines (31 loc) · 1.33 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---------------------------------------------------------------------
-- Namespacing teh shit out of this
---------------------------------------------------------------------
local ns, oUFYna = ...
local oUF = ns.oUF or oUF
oUFYnaCfg = {}
---------------------------------------------------------------------
-- Configuration
---------------------------------------------------------------------
oUFYnaCfg = {
["texture"] = 'Interface\\TargetingFrame\\UI-StatusBar',
--["texture"] = 'Interface\\AddOns\\oUF_Ynarah\\media\\dP.tga',
["font"] = STANDARD_TEXT_FONT,
["numbers"] = 'Fonts\\skurri.TTF',
["fontSize"] = 12,
--["border"] = 'Interface\\AddOns\\oUF_Ynarah\\media\\border.tga',
["border"] = 'Interface\\AddOns\\oUF_Ynarah\\media\\gloss.tga',
["hpHeight"] = 20, -- height of healthbar of player/target/tot/focus/pet and height of castbar
["ppHeight"] = 8, -- height of powerbar of player/target/pet
["plWidth"] = 300, -- width of player/target and width of castbar
["focWidth"] = 165, -- width of tot/focus
--I got tired of typing this all the damn time k?
["backdrop"] = {
bgFile = "Interface\\Buttons\\WHITE8x8",
edgeFile = "Interface\\Buttons\\WHITE8x8",
edgeSize = 1,
insets = { left = -1, right = -1, top = -1, bottom = -1}
},
["backdropcolor"] = {.1,.1,.1,1},
["backdropbordercolor"] = {.6,.6,.6,1},
}