View Single Post
08-22-09, 05:22 PM   #45
willgk
An Aku'mai Servant
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 37
Originally Posted by willgk View Post
Katae,

I see that you can add shadows to text, however, you dont allow for changing the shadows text size to generate essentially an outline. Can you add this or is there a way to do it already?

I see that you don't have the support for this so i quickly hacked in support, maybe you can add something like it to the codebase? Would be awesome:

Code:
 if t.outline == 1 then
  text:SetFont(t.font or "Fonts\\FRIZQT__.TTF", t.size or 12, "Outline")
 else
  text:SetFont(t.font or "Fonts\\FRIZQT__.TTF", t.size or 12)
 end
Added at line 183 instead of the text:SetFont line that's there now in core.lua.

Then to activate it in your text { } block just do Outline = 1

Last edited by willgk : 08-22-09 at 05:33 PM.
  Reply With Quote