clear chat on wakeup

This commit is contained in:
_nebula 2023-05-07 21:04:28 +01:00
parent 57dec490be
commit 8324a0acf2

View File

@ -241,6 +241,7 @@ internal class MultiplayerHUDManager : MonoBehaviour, IAddComponentOnStart
var inputFieldGO = _textChat.Find("InputField");
_inputField = inputFieldGO.GetComponent<InputField>();
_inputField.text = "";
_textChat.Find("Messages").Find("Message").GetComponent<Text>().text = "";
}
public void UpdateMinimapMarkers(Minimap minimap)