(339649ad9) Fix the sprite of a newly created level object not being visible or editable until the next time the object is loaded.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:53:41 +03:00
parent b9c6c15da4
commit 5d53c9e250
12 changed files with 133 additions and 318 deletions
@@ -778,6 +778,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