Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: selmiak on Sun 19/10/2014 20:21:52

Title: disable Label font outline
Post by: selmiak on Sun 19/10/2014 20:21:52
I'm currently (trying to) implementing a cyrillic translation for eternal chrysalis. I have the cyrillic font running but on the @OVERHOTSPOT@ label the outline still only shows ? ? ? ? ? ?
How can I disable the outline on a label?

[imgzoom]http://i.imgur.com/jLTtubg.jpg[/imgzoom]

first one with auto outline, 2nd pic without auto outline. So this seems like a second, additional outline.
Title: Re: disable Label font outline
Post by: Crimson Wizard on Sun 19/10/2014 20:33:15
Hmm, the outline is set by font, not label. Maybe there's a font number in OutlineFont property and that makes it drawn additional outline?

BTW, what do you mean by "without auto outline"? Is the second screenshot with No Outline, or Use Font for Outline?

Are you absolutely sure there is only one label there?
Title: Re: disable Label font outline
Post by: selmiak on Sun 19/10/2014 21:21:22
the second screenshot uses
Outline Style: None

the first one uses
Outline Style: Auto

I set it with
Code (ags) Select
Labelname.Font=eFontFont4; //with outlines

or with
Code (ags) Select
Labelname.Font=eFontFont5; //without outlines


edit:
Damned, you are right, there are indeed 2 labels, I have no idea why I did put them there, but changing the font of both works!
Thanks CW!