(ee538829d) Added docking tutorial video, removed highlight from old docking button.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:51:45 +03:00
parent 57302f7bb8
commit f02c7cdda9
13 changed files with 392 additions and 82 deletions
@@ -645,6 +645,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