1
This commit is contained in:
@@ -187,7 +187,6 @@ namespace BITKit.Net.Kcp
|
||||
Singleton = this;
|
||||
client = new KcpNetClient();
|
||||
client.OnConnectedFailed += Reconnect;
|
||||
client.OnDisconnected += Reconnect;
|
||||
}
|
||||
private void Start()
|
||||
{
|
||||
|
@@ -187,7 +187,7 @@ namespace BITKit.UX
|
||||
if (panelsLabel is null || currentPanelLabel is null || historyLabel is null) return;
|
||||
panelsLabel.text=string.Join("\n",UXService.Panels);
|
||||
currentPanelLabel.text = string.Join("\n",UXService.CurrentPanel?.Index);
|
||||
historyLabel.text = string.Join("\n",UXService.History.Select(x=>x.Index));
|
||||
historyLabel.text = string.Join("\n",UXService.History.Select(x=>x is null ? "Null" : x.Index));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user