(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
@@ -12,7 +12,9 @@ namespace Barotrauma
private Dictionary<string, List<string>> texts;
private string filePath;
public readonly bool NoWhiteSpace;
private readonly string filePath;
public TextPack(string filePath)
{
@@ -23,6 +25,7 @@ namespace Barotrauma
if (doc == null || doc.Root == null) return;
Language = doc.Root.GetAttributeString("language", "Unknown");
NoWhiteSpace = doc.Root.GetAttributeBool("nowhitespace", false);
foreach (XElement subElement in doc.Root.Elements())
{