Attract-Mode Support Forum

Attract-Mode Support => Scripting => Topic started by: l3m35 on February 29, 2020, 06:06:17 PM

Title: Line height control, possible?
Post by: l3m35 on February 29, 2020, 06:06:17 PM
One more question: is there any way to set the line height of a text?

What I have:

Code: [Select]
local oview = fe.add_text("[Overview]", flw*0.56, flh*0.27, flw*0.4,flh*0.4);
oview.font= "pxl";
oview.align = Align.TopLeft;
oview.word_wrap = true;
oview.charsize = 16;

But I really would need to set the line height, like "oview.line_height=X" (I know it doesn't exist, just as example).

Seems like there is no way to do it directly, right?
Title: Re: Line height control, possible?
Post by: ReBirFh on February 29, 2020, 07:11:51 PM
I'm no programmer but yesterday I started doing my first attempt at a layout and just finished the overview part of mine. I think what you're looking for can be done with the line spacing property (line_spacing) or some other from here "https://github.com/mickelson/attract/blob/master/Layouts.md#Text (https://github.com/mickelson/attract/blob/master/Layouts.md#Text)"
Title: Re: Line height control, possible?
Post by: l3m35 on March 01, 2020, 06:40:47 PM
Exactly what I was searching for, thanks! Can't believe I didn't find it before.