Commit b3d0aa2a authored by Ivaria's avatar Ivaria
Browse files

Fixed application of specified opacity for HoT Icons

parent 8c2cd0cf
......@@ -339,7 +339,11 @@ local function VUHDO_customizeHotIcons(aButton, aHotName, aRest, aTimes, anIcon,
end
end
tIcon:SetVertexColor(tHotColor["R"], tHotColor["G"], tHotColor["B"], tIsChargeAlpha and tHotColor["O"] or 1);
if tIsChargeAlpha then
tIcon:SetVertexColor(tHotColor["R"], tHotColor["G"], tHotColor["B"], tHotColor["O"]);
else
tIcon:SetVertexColor(tHotColor["R"], tHotColor["G"], tHotColor["B"]);
end
if tIsChargeShown then
tChargeTexture:SetTexture(VUHDO_CHARGE_TEXTURES[aTimes]);
......
......@@ -15,6 +15,7 @@ Known issues:
Bugfixes:
-- Fixed game stutters caused by macro'ed console commands
-- Fixed error where bouquets are evaluated before decompression
-- Fixed application of specified opacity for HoT Icons
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment