View Single Post
05-14-16, 02:08 PM   #11
ObbleYeah
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 210
ah! good, i was worried my experiments had tainted something.

well not good but... you know what i mean.

having not dug too much into the source I've just been making style adjustments via:

Lua Code:
  1. --
  2.     local style = function(frame, sOptions, fOptions)
  3.         if frame.styled then return end
  4.         -- style stuff
  5.         frame.styled = true
  6.     end
  7.  
  8.     local f = CreateFrame'Frame'
  9.     f:RegisterEvent'NAME_PLATE_CREATED'
  10.     f:SetScript('OnEvent', function(self, event, ...)
  11.         local base = ...
  12.         style(base.UnitFrame)
  13.     end)

Last edited by ObbleYeah : 05-14-16 at 02:37 PM.