ui info hosst player and npc done
This commit is contained in:
@@ -29,6 +29,19 @@ namespace BrewMonster.Network
|
||||
private string _username = "";
|
||||
private string _password = "";
|
||||
|
||||
#if UNITY_EDITOR
|
||||
public bool isDebg;
|
||||
private bool lastDebug;
|
||||
public void OnValidate()
|
||||
{
|
||||
if (isDebg != lastDebug)
|
||||
{
|
||||
_gameSession.IsDebug = isDebg;
|
||||
lastDebug = isDebg;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
protected override void Awake()
|
||||
{
|
||||
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
||||
|
||||
Reference in New Issue
Block a user