1+ local MASQUE = LibStub (" Masque" , true )
2+ if not MASQUE then
3+ return
4+ end
5+
6+ local AddOn , _ = ...
7+ local Version = GetAddOnMetadata (AddOn , " Version" )
8+
9+ --[[ CleanUI ]]
10+
11+ MASQUE :AddSkin (" Default" , {
12+ Author = " Soyier" ,
13+ Version = Version ,
14+ Shape = " Square" ,
15+ Masque_Version = 80200 ,
16+
17+ -- Layer Settings
18+ Backdrop = {
19+ Width = 42 ,
20+ Height = 42 ,
21+ Color = {0.4 , 0.4 , 0.4 , 1 },
22+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Backdrop]] ,
23+ },
24+ Icon = {
25+ Width = 28 ,
26+ Height = 28 ,
27+ TexCoords = {0.08 , 0.92 , 0.08 , 0.92 },
28+ },
29+ Flash = {
30+ Width = 42 ,
31+ Height = 42 ,
32+ BlendMode = " ADD" ,
33+ Color = {0.5 , 0 , 1 , 0.6 },
34+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Overlay]] ,
35+ },
36+ Cooldown = {
37+ Width = 28 ,
38+ Height = 28 ,
39+ AboveNormal = true ,
40+ },
41+ Normal = {
42+ Width = 42 ,
43+ Height = 42 ,
44+ Color = {0.3 , 0.3 , 0.3 , 1 },
45+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Normal]] ,
46+ },
47+ Pushed = {
48+ Width = 42 ,
49+ BlendMode = " ADD" ,
50+ Color = {1 , 1 , 1 , 1 },
51+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Overlay]] ,
52+ },
53+ Border = {
54+ Width = 42 ,
55+ Height = 42 ,
56+ BlendMode = " BLEND" ,
57+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Border]] ,
58+ },
59+ Disabled = {
60+ Width = 42 ,
61+ Height = 42 ,
62+ BlendMode = " BLEND" ,
63+ Color = {1 , 0 , 0 , 1 },
64+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Border]] ,
65+ },
66+ Checked = {
67+ Width = 42 ,
68+ Height = 42 ,
69+ BlendMode = " BLEND" ,
70+ Color = {0 , 0.12 , 1 , 1 },
71+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Border]] ,
72+ },
73+ AutoCastable = {
74+ Width = 42 ,
75+ Height = 42 ,
76+ Texture = [[ Interface\Buttons\UI-AutoCastableOverlay]] ,
77+ },
78+ Shine = {
79+ Width = 42 ,
80+ Height = 42 ,
81+ },
82+ Highlight = {
83+ Width = 42 ,
84+ Height = 42 ,
85+ BlendMode = " ADD" ,
86+ Color = {0.5 , 0 , 1 , 1 },
87+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Highlight]] ,
88+ },
89+ Gloss = {
90+ Width = 42 ,
91+ Height = 42 ,
92+ BlendMode = " ADD" ,
93+ Color = {1 , 1 , 1 , 1 },
94+ Texture = [[ Interface\AddOns\Masque_Neuron\Default\Gloss]] ,
95+ },
96+ HotKey = {
97+ Width = 42 ,
98+ Height = 10 ,
99+ JustifyH = " RIGHT" ,
100+ JustifyV = " TOP" ,
101+ OffsetX = - 4 ,
102+ OffsetY = - 4 ,
103+ },
104+ Count = {
105+ Width = 42 ,
106+ Height = 10 ,
107+ JustifyH = " RIGHT" ,
108+ JustifyV = " BOTTOM" ,
109+ OffsetY = 2 ,
110+ },
111+ Name = {
112+ Width = 42 ,
113+ Height = 10 ,
114+ JustifyH = " CENTER" ,
115+ JustifyV = " BOTTOM" ,
116+ OffsetY = 3 ,
117+ },
118+ Duration = {
119+ Width = 42 ,
120+ Height = 10 ,
121+ OffsetY = - 2 ,
122+ },
123+ -- Skin data end.
124+
125+ }, true )
0 commit comments