1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-22 20:58:34 +01:00

also apply the newline fix to bitmap fonts

This commit is contained in:
Ellpeck 2019-08-24 00:08:36 +02:00
parent e1baacdb0d
commit 404e95c8f2

View file

@ -8,7 +8,8 @@ namespace MLEM.Extended.Extensions {
public static IEnumerable<string> SplitString(this BitmapFont font, string text, float width, float scale) { public static IEnumerable<string> SplitString(this BitmapFont font, string text, float width, float scale) {
var builder = new StringBuilder(); var builder = new StringBuilder();
foreach (var word in text.Split(' ')) { foreach (var line in text.Split('\n')) {
foreach (var word in line.Split(' ')) {
builder.Append(word).Append(' '); builder.Append(word).Append(' ');
if (font.MeasureString(builder).Width * scale >= width) { if (font.MeasureString(builder).Width * scale >= width) {
var len = builder.Length - word.Length - 1; var len = builder.Length - word.Length - 1;
@ -17,6 +18,8 @@ namespace MLEM.Extended.Extensions {
} }
} }
yield return builder.ToString(0, builder.Length - 1); yield return builder.ToString(0, builder.Length - 1);
builder.Clear();
}
} }
} }