(b130881e0) Added: Overriding of the BebasNeue-Regular.otf in Russian due to missing characters

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:42:59 +03:00
parent 02723c661c
commit b7e8407df5
18 changed files with 423 additions and 63 deletions
@@ -303,6 +303,25 @@ namespace Barotrauma
}
}
public string DisplayName
{
get;
private set;
}
private string roomName;
[Editable, Serialize("", true, translationTextTag: "RoomName.")]
public string RoomName
{
get { return roomName; }
set
{
if (roomName == value) { return; }
roomName = value;
DisplayName = TextManager.Get(roomName, returnNull: true) ?? roomName;
}
}
public override Rectangle Rect
{
get