Skip to content

Commit

Permalink
updated models
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhalenar committed Mar 3, 2024
1 parent 8fcbdd7 commit 620a3d6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arcor2_AREditor/Assets/BASE/Scripts/GameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ private async void OnConnectionStatusChanged(ConnectionStatusEnum newState) {

SystemInfo = systemInfo;
ServerVersion.text = "Editor version: " + Application.version +
"\nServer version: " + systemInfo.Version;
"\nServer version: " + systemInfo._Version;
ConnectionInfo.text = WebsocketManager.Instance.APIDomainWS;
MainMenu.Instance.gameObject.SetActive(false);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public async override void SaveLogs(IO.Swagger.Model.Scene scene, IO.Swagger.Mod
StreamWriter logsFile = File.CreateText(dirname + "/logs.txt");
logsFile.WriteLine("Editor version: " + Application.version);
if (GameManager.Instance.SystemInfo != null) {
logsFile.WriteLine("Server version: " + GameManager.Instance.SystemInfo.Version);
logsFile.WriteLine("Server version: " + GameManager.Instance.SystemInfo._Version);
}

logsFile.WriteLine("Editor API version: " + GameManager.ApiVersion);
Expand Down
Binary file modified arcor2_AREditor/Assets/BASE/Scripts/Swagger/IO.Swagger.dll
Binary file not shown.

0 comments on commit 620a3d6

Please sign in to comment.