I think the spacing isn’t changing because of line 1071 in ofTrueTypeFont.cpp pos.x += getGlyphProperties(' ').advance * spaceSize * (letterSpacing - 1.f) * directionX;
When letter spacing is at its default value of 1 this makes it all equal zero and spaceSize has no effect.
When letter spacing isn’t at default letterSpacing and spaceSize are correlated in a way that doesn’t feel intentional.
Yes space size was something we used in the past cause we didn’t read the space size from the font itself. it seems at some point it got mixed up and now behaves as a factor of the space size rather than the size of the space. It looks like a bug anyway but not sure if we should just remove this function or bring back the original functionality where this function sets the size of the space
For whatever it’s worth I think it’s a useful feature. That said I do not feel strongly about it, as it’s easy enough to write into the app. I modified iterateString in ofTrueTypeFont.cpp to make it work like I originally expected- letterSpacing and spaceSizing operating Independently of each other.
That looks good to me, i believe there are other types of spaces in other alphabets but we can just speficify in the docs that by now this only works for the latin alphabet space.
Also i think this is the only place where it’s needed but not 100% sure. in any case if you want to send a PR that would be great!