View Single Post
01-05-20, 12:43 PM   #7
Vrul
A Scalebane Royal Guard
 
Vrul's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 404
For an outline change:
Code:
statusText:SetFont("Fonts\\ARIALN.TTF", 16)
to
Code:
statusText:SetFont("Fonts\\ARIALN.TTF", 16, "OUTLINE")
For shadow just add these lines after the SetFont and SetTextColor calls:
Code:
statusText:SetShadowColor(0, 0, 0, 0.5)
statusText:SetShadowOffset(1, -1)
I'd only use an outline or shadow but not both so pick the one you think looks best.
  Reply With Quote