Mercurial > wow > turok
comparison Turok/Modules/Combat/Powerbar.Init.lua @ 6:a9b8b0866ece
clear out log jam
author | Nenue |
---|---|
date | Sun, 21 Feb 2016 08:32:53 -0500 |
parents | |
children | 9400a0ff8540 |
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:01 AM | |
6 | |
7 | |
8 Turok.defaults.powerbar = { | |
9 trace = true, | |
10 alpha_ooc = 0.1, | |
11 alpha_full_ooc = .1, | |
12 alpha = 1, | |
13 alpha_fade_out = 5, | |
14 alpha_fade_in = 0.15, | |
15 combatFade = true, | |
16 graph_safe = {.5,.5,.5,1}, | |
17 graph_alert = {1,0,0,1}, | |
18 graph_blend = 'ADD', | |
19 graph_blend_alert = 'BLEND', | |
20 foreground_color = {.1,.5,1 ,1}, | |
21 background_color = {0.2,0.2,0.2,0.2}, | |
22 y = -188, | |
23 x = 0, | |
24 height = 20, | |
25 width = 300, | |
26 padding = 0, | |
27 spacing = 1, | |
28 strata = 'BACKGROUND', | |
29 level = 5, | |
30 resource_max_noise = [[Interface\Addons\Turok\Media\sound\SquishFart.ogg]], | |
31 resource_low_noise = [[]], | |
32 resource_empty_noise = [[Interface\Addons\Turok\Media\sound\wilhelm.ogg]], | |
33 font = [[Interface\Addons\Turok\Media\font\ArchivoNarrow-Bold.ttf]], | |
34 secondary = { | |
35 anchor = 'BOTTOMLEFT', | |
36 anchorTo = 'TOPLEFT', | |
37 parent = 'TkPowerBar', | |
38 spacing = 1, | |
39 padding = 0, | |
40 height = 10, | |
41 foreground_inset = 0, | |
42 foreground_color = {1,1,1,.4}, | |
43 foreground_blend = 'ADD', | |
44 background_color = {0,0,0,0}, | |
45 background_blend = 'BLEND', | |
46 x = 0, y = 1, | |
47 }, | |
48 secondary1 = { | |
49 anchor = 'BOTTOMLEFT', | |
50 anchorTo = 'TOPLEFT', | |
51 parent = 'TkPowerBar', | |
52 spacing = 1, | |
53 padding = 0, | |
54 height = 7, | |
55 foreground_inset = 0, | |
56 foreground_color = {.7, .4, 1, 1}, | |
57 foreground_blend = 'ADD', | |
58 background_color = {0,0,0,0.3}, | |
59 background_blend = 'BLEND', | |
60 x = 0, y = 2, | |
61 }, | |
62 secondary2 = { | |
63 anchor = 'BOTTOMLEFT', | |
64 anchorTo = 'TOPLEFT', | |
65 parent = 'TkPowerBar', | |
66 spacing = 1, | |
67 padding = 0, | |
68 height = 5, | |
69 foreground_inset = 0, | |
70 foreground_color = {1,1,1,.8}, | |
71 foreground_blend = 'ADD', | |
72 background_color = {0,0,1,0}, | |
73 background_blend = 'BLEND', | |
74 x = 0, y = 8, | |
75 }, | |
76 secondary3 = { | |
77 anchor = 'BOTTOMLEFT', | |
78 anchorTo = 'TOPLEFT', | |
79 parent = 'TkPowerBar', | |
80 spacing = 1, | |
81 padding = 0, | |
82 height = 5, | |
83 foreground_inset = 0, | |
84 foreground_color = {1,.5,.2,1}, | |
85 foreground_blend = 'MOD', | |
86 background_color = {0,0,1,0}, | |
87 background_blend = 'BLEND', | |
88 x = 0, y = 16, | |
89 | |
90 }, | |
91 | |
92 powerText = { | |
93 y = 0, | |
94 x = 6, | |
95 anchor='LEFT', | |
96 anchorTo='LEFT', | |
97 parent = 1, | |
98 justifyH = 'LEFT', | |
99 justifyV = 'MIDDLE', | |
100 text_color = {1,1,1,1}, | |
101 size = 18, | |
102 }, | |
103 secondaryText = { | |
104 y = 0, | |
105 x = -6, | |
106 anchor='RIGHT', | |
107 anchorTo='RIGHT', | |
108 parent = 1, | |
109 justifyH = 'RIGHT', | |
110 justifyV = 'BOTTOM', | |
111 text_color = {1,1,0,1}, | |
112 size = 18, | |
113 }, | |
114 graph1 = { | |
115 foreground_color = {.2,1,.5,1 }, | |
116 foreground_texture = '', | |
117 | |
118 }, | |
119 } |