I am trying to track down a very bizarre Win32 issue that I am having with a couple fonts in our game. The fonts we use all work correctly on all other platforms ( Android, iOS, OS X ), this problem is only on windows ( both in simulator and standalone builds )
The first issue is strange in that it will appear and disappear based on the size of the application, below are two examples images from the simulator, one at the iPad @2x and the other iPad @3x.
Borderless iPad @2x: https://drive.google.com/file/d/0Bz7BW07ngYdnMWh0M2trU0pIN1k/view?usp=sharing
Borderless iPad @3x: https://drive.google.com/file/d/0Bz7BW07ngYdnQ3l6c21iNUJrM0k/view?usp=sharing
Each is running the same code, rendering 3 texts with rectangles drawn behind them to showcase their content width and height.
The first two texts have no specified width or height. The first line of text is font size 138, the second line of text is the same string but drawn at font size 139. As you can see font size 138 both are drawn normally on both devices, but 139 is drawn incorrectly at size @3x.
In the case where the Y is missing 139 the it is because the Y is actually being placed on the next line, this can be verified by specifying a width of screen width and then any height that is large enough to see the next line.
It is almost as if the text object is being assigned a default width which is then not big enough to fit the text.
Interesting to note, putting a space at the end of the string supplied to the text object causes it to behave correctly, or at least I cant find a font size that will mess it up.
Moving on to the next (3rd) line of the images, this text object has a width specified and this issue does not vary between player sizes. The leading character is being slightly cut off by the edge of the text object. With two of the fonts I have tested this will occur only when the alignment is specified to be center and the line is almost the exact width specified for the text object.
I am not sure that I should submit a bug report since I suppose it could still be a font issue, but seeing as it works *perfectly* on all other platforms I thought I would at least see what you guys think. I cannot reproduce this issue with monospace fonts, but at the same time this problem is purely windows and occurs with multiple non-mono fonts so I am not convinced that it is purely a font issue.
Attached is the project that I used to create the screenshots that demo this problem. Other fonts are included and the non-mono fonts will exhibit the same issue, though at different font / player sizes. For instance, changing game_font to “Lassiter” and running the game at iPad @1x will cause both lines of text to lose their Y’s while @2x and @3x bother render correctly.
Thanks for the help!
- Ian