(93b920f3f) Fixed Chinese text wrapping (can't wrap based on spaces because there's no spaces)

This commit is contained in:
Joonas Rikkonen
2019-05-06 11:36:38 +03:00
parent e0ddeef023
commit 8e53c38461
7 changed files with 87 additions and 245 deletions
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace Barotrauma
{
@@ -15,7 +16,15 @@ namespace Barotrauma
private static string[] serverMessageCharacters = new string[] { "~", "[", "]", "=" };
public static string Language;
public static bool NoWhiteSpace
{
get
{
if (!textPacks.ContainsKey(Language)) { return false; }
return textPacks[Language].Any(t => t.NoWhiteSpace);
}
}
private static HashSet<string> availableLanguages = new HashSet<string>();
public static IEnumerable<string> AvailableLanguages
{