Mercurial > wow > turok
comparison Turok/Modules/Combat/Castbar.Init.lua @ 6:a9b8b0866ece
clear out log jam
author | Nenue |
---|---|
date | Sun, 21 Feb 2016 08:32:53 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
5:8a9a6637f082 | 6:a9b8b0866ece |
---|---|
1 --- ${PACKAGE_NAME} | |
2 -- @file-author@ | |
3 -- @project-revision@ @project-hash@ | |
4 -- @file-revision@ @file-hash@ | |
5 -- Created: 12/28/2015 8:00 AM | |
6 | |
7 Turok.defaults.tek = { | |
8 width = 300, height = 30, | |
9 anchor = 'CENTER', parent = 'UIParent', anchorTo = 'CENTER', | |
10 x = 0, y = 0, | |
11 foreground_blend = 'BLEND', | |
12 background_blend = 'BLEND', | |
13 background_texture = '', | |
14 background_color = {1,1,1,0.2}, | |
15 combatFade = false, | |
16 | |
17 foreground_channeling = {0.4,0.2,0.9,1}, | |
18 background_channeling = {0.25,0.25,0.25,1}, | |
19 foreground_casting = {0.01, 0.46, 0.93, 1}, | |
20 background_casting = {0,0,0,0.0}, | |
21 background_interrupted = {1,0,0,1}, | |
22 foreground_interrupted = {1, 0.5, 0, 1}, | |
23 foreground_uninterruptible = {0.8, 0.8, .8, 1}, | |
24 background_uninterruptible = {0,0,0,0.25}, | |
25 background_failed = {0.25,0.25,0.25, 1}, | |
26 foreground_failed = {1,0.5,0.5,0.25}, | |
27 foreground_finished = {0.4,.7,.1, 1}, | |
28 background_finished = {0,0,0,0.25}, | |
29 foreground_inset = 0, | |
30 padding = 2, | |
31 spacing = 1, | |
32 | |
33 icon = { | |
34 size = 56, | |
35 anchor = 'RIGHT', anchorTo = 'LEFT', | |
36 parent = 1, | |
37 x = 0, y = 0, | |
38 }, | |
39 | |
40 fill_direction = 'RIGHT', | |
41 | |
42 glow_texture = "Tooltip-BigBorder", | |
43 glow_size = 2, | |
44 spark_texture = "", | |
45 spark_size = 2, | |
46 spellname = {}, | |
47 casttime = {}, | |
48 ping = { | |
49 anchor='TOPRIGHT', | |
50 anchorTo='BOTTOMRIGHT', | |
51 x = -6, y= 0, | |
52 parent = 1, | |
53 parentKey = 'background', | |
54 color = {1,1,0,0.7}, | |
55 size = 12, | |
56 font = "Interface\\Addons\\Turok\\Media\\font\\ArchivoNarrow-Bold.ttf", | |
57 justifyH = 'RIGHT', | |
58 justifyV = 'BOTTOM' | |
59 }, | |
60 casttime = { | |
61 parent = 1, | |
62 parentKey = 'background', | |
63 x = -6, y= 0, | |
64 anchor = 'RIGHT', | |
65 anchorTo = 'RIGHT', | |
66 justifyH = 'RIGHT', | |
67 justifyV = 'MIDDLE' | |
68 }, | |
69 spelltext = { | |
70 parent = 1, | |
71 parentKey = 'foreground', | |
72 x = 6, y = 0, | |
73 anchor = 'LEFT', | |
74 anchorTo = 'LEFT', | |
75 justifyH = 'LEFT', | |
76 justifyV = 'MIDDLE', | |
77 }, | |
78 downtime = { | |
79 parent = 1, | |
80 parentKey = 'foreground', | |
81 anchor='TOPLEFT', | |
82 anchorTo='BOTTOMLEFT', | |
83 x = 0, y = 0, | |
84 text_color = {.75,.75,.75,1}, | |
85 justifyH = 'LEFT', | |
86 }, | |
87 ['player'] = { | |
88 icon = { | |
89 embedded = true, | |
90 size = 36, | |
91 anchor = 'RIGHT', anchorTo = 'LEFT', | |
92 parent = 1, | |
93 x = -2, y = 0, | |
94 }, | |
95 width = 330, height = 32, | |
96 anchor = 'TOP', parent = 'UIParent', anchorTo = 'CENTER', | |
97 x = 0, y = -254, | |
98 }, | |
99 ['target'] = { | |
100 icon = { | |
101 embedded = true, | |
102 size = 36, | |
103 width = 300, | |
104 anchor = 'LEFT', anchorTo = 'LEFT', | |
105 parent = 'TekplayerCastBar', | |
106 x = -2, y = 0, | |
107 }, | |
108 | |
109 width = 300, height = 24, | |
110 height = 36, | |
111 anchor = 'BOTTOMLEFT', parent = 'TekplayerCastBar', anchorTo = 'TOPRIGHT', | |
112 x = 1, y =1, | |
113 }, | |
114 ['focus'] = { | |
115 width = 200, height = 36, | |
116 anchor = 'TOPLEFT', parent = 'TekplayerCastBar', anchorTo='BOTTOMRIGHT', | |
117 x = 2, y = -2 | |
118 }, | |
119 ['pet'] = { | |
120 width = 300, height = 24, | |
121 anchor = 'TOPRIGHT', parent = 'TekplayerCastBar', anchorTo='TOPLEFT', | |
122 x = -2, y = 0 | |
123 }, | |
124 } |