View Single Post
07-20-17, 12:52 PM   #4
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
You could probably fix it by changing all occurences of
Code:
xxx:SetTexture(1,1,1,1)
or
Code:
xxx:SetTexture(bg_r,bg_g,bg_b,f.bg_alpha or d.bg_alpha)
too
Code:
xxx:SetVertexColor(1,1,1,1)
or
Code:
xxx:SetVertexColor(bg_r,bg_g,bg_b,f.bg_alpha or d.bg_alpha)
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 07-20-17 at 12:55 PM.
  Reply With Quote