Guest User

Untitled

a guest
Apr 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. local function onLeave(self)
  2. self:SetAlpha(0)
  3. end
  4.  
  5. local function onEnter(self)
  6. self:SetAlpha(1)
  7. end
  8. local function hook(self)
  9. self:SetScript('OnEnter', onEnter)
  10. self:SetScript('OnLeave', onLeave)
  11. end
  12.  
  13. -- hook(xxFrame)
Add Comment
Please, Sign In to add comment