This commit is contained in:
CortexCore
2024-06-16 17:55:29 +08:00
parent 22f318c8f6
commit 9186ab6e37
5 changed files with 13 additions and 8 deletions

View File

@@ -187,7 +187,6 @@ namespace BITKit.Net.Kcp
Singleton = this;
client = new KcpNetClient();
client.OnConnectedFailed += Reconnect;
client.OnDisconnected += Reconnect;
}
private void Start()
{

View File

@@ -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