You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
576 B
22 lines
576 B
|
3 years ago
|
local AS, L, S, R = unpack(AddOnSkins)
|
||
|
|
|
||
|
|
if not AS:CheckAddOn('DressUp') then return end
|
||
|
|
|
||
|
|
function R:DressUp()
|
||
|
|
CustomDressUpFrame.portrait:SetAlpha(0)
|
||
|
|
|
||
|
|
S:HandleButton(CustomDressUpFrame.ResetButton)
|
||
|
|
S:HandleCloseButton(CustomDressUpFrame.CloseButton)
|
||
|
|
|
||
|
|
S:HandleButton(CustomDressUpFrameCancelButton)
|
||
|
|
|
||
|
|
S:HandleButton(DressUpHideArmorButton)
|
||
|
|
S:HandleDropDownBox(DressUpRaceDropdown)
|
||
|
|
S:HandleCheckBox(DressUpGenderButtonFemale)
|
||
|
|
S:HandleCheckBox(DressUpGenderButtonMale)
|
||
|
|
|
||
|
|
CustomDressUpFrame.Inset:SetAlpha(0)
|
||
|
|
end
|
||
|
|
|
||
|
|
AS:RegisterSkin('DressUp', R.DressUp)
|