It seems that there is a glitch with text extra when on a (gui) Text with autoline.
depending on the size of the window, part of the text disappear.
it is not caused by the size of the Text rect, as you can see the text above is fully drawn, it just is missing letters are a certain x ratio, and reappears at others
I do use a lot of Extra, since i have a fade in per word, so it goes color, word, color, word, color...
(This post was last modified: 10-28-2023 10:01 PM by RedcrowProd.)
after further test, it is Text.extra.color(color); that throw something off...
it seems that it is coming from void split(MemPtr<TextSplit> splits, C TextStyleParams &style, Flt width, Bool auto_line, TextSrc text, C StrData *data, Int datas, Flt *actual_width=null)
(This post was last modified: 10-29-2023 02:07 AM by RedcrowProd.)
Also your code
if(i%5 == 5)
will not execute because i%5 gives range 0..4 for positives
Also please specify some D.mode custom resolution in InitPre, because default uses half of desktop, which might give different results for different computers.
Also your code
if(i%5 == 5)
will not execute because i%5 gives range 0..4 for positives
Also please specify some D.mode custom resolution in InitPre, because default uses half of desktop, which might give different results for different computers.
Sent an updated file, but you can see in the one you have, text17 is missing (the entire extra.str is not showing)
(This post was last modified: 10-31-2023 08:40 AM by RedcrowProd.)