View Single Post
08-09-16, 10:40 AM   #1
melicon
A Deviate Faerie Dragon
 
melicon's Avatar
Join Date: Jul 2016
Posts: 10
Help with tooltip fonts please.

Hello again. I am trying to change the size of the comparison tooltip font.

I am currently using something I got off a forum to change other font sizes. Hoping I can just add something to change the comparison size as well?

Here is what I got from the forum..

Code:
for _, font in pairs({
    GameFontHighlight,

    GameFontDisable,

    GameFontHighlightExtraSmall,
    GameFontHighlightMedium,

    GameFontNormal,
    GameFontNormalSmall,

    --TextStatusBarText,

    GameFontDisableSmall,
    GameFontHighlightSmall,
	
	GameTooltipText,
}) do
    font:SetFont('Fonts\\ARIALN.ttf', 15)
    font:SetShadowOffset(2, -1)
end
 
TextStatusBarText:SetFont('Fonts\\ARIALN.ttf', 15, 'outline')
GameTooltipHeaderText:SetFont('Fonts\\ARIALN.ttf', 15)

for _, font in pairs({
    AchievementPointsFont,
    AchievementPointsFontSmall,
    AchievementDescriptionFont,
    AchievementCriteriaFont,
    AchievementDateFont,
	
}) do
    font:SetFont('Fonts\\ARIALN.ttf', 15)
end

GameFontNormalHuge:SetFont('Fonts\\ARIALN.ttf', 20, 'OUTLINE')
GameFontNormalHuge:SetShadowOffset(0, 0)
  Reply With Quote