Commit 57d3ccbb authored by YLLY-WS\Ylly's avatar YLLY-WS\Ylly
Browse files

Fix

parent 8e102e66
Showing with 12 additions and 14 deletions
+12 -14
......@@ -57,13 +57,6 @@ namespace AvvyLand.Scripts.ECS.Systems.InitSystemGroup
var client = EntityManager.GetSharedComponentData<GridWebSocketClientComponent>(gridEntity);
client.Client.Disconnect();
}
if (HasSingleton<UCSWebSocketClientComponent>())
{
var gridEntity = GetSingletonEntity<UCSWebSocketClientComponent>();
var ucsClient = EntityManager.GetSharedComponentData<UCSWebSocketClientComponent>(gridEntity);
ucsClient.Client.Disconnect();
}
if (HasSingleton<SnapShotSingletonComponent>())
......
using AvvyLand.Scripts.ECS.Components.Grid;
using AvvyLand.Scripts.ECS.Components.NetworkLoop;
using AvvyLand.Scripts.ECS.Components.RebootComponents;
using AvvyLand.Scripts.ECS.Systems.Grpc;
using AvvyLand.Scripts.ECS.Systems.InitSystemGroup;
using AvvyLand.Scripts.ECS.Systems.NetworkClient;
using AvvyLand.Scripts.ECS.Systems.UCSGrpc;
using Ucs;
using Unity.Entities;
using UnityEngine;
namespace AvvyLand.Scripts.ECS.Systems.RebootSystems
{
......@@ -19,7 +23,6 @@ namespace AvvyLand.Scripts.ECS.Systems.RebootSystems
protected override void OnCreate()
{
RequireForUpdate(GetEntityQuery(typeof(ArVoxelGridComponentSingleton)));
RequireForUpdate(GetEntityQuery(typeof(UCSWebSocketClientComponent)));
}
protected override void OnUpdate()
......@@ -33,14 +36,16 @@ namespace AvvyLand.Scripts.ECS.Systems.RebootSystems
var client = EntityManager.GetSharedComponentData<GridWebSocketClientComponent>(gridEntity);
client.Client.Disconnect();
var ucsWebSocketEntity = GetSingletonEntity<UCSWebSocketClientComponent>();
var ucsClient = EntityManager.GetSharedComponentData<UCSWebSocketClientComponent>(ucsWebSocketEntity);
ucsClient.Client.DisconnectAsync(() =>
if (HasSingleton<GrpcClientSharedComponent<UCS.UCSClient>>())
{
EntityManager.AddComponent<NetworkNotConnectedTag>(ucsWebSocketEntity);
});
var ucsGrpcEntity = GetSingletonEntity<GrpcClientSharedComponent<UCS.UCSClient>>();
var ucsGrpc = EntityManager.GetSharedComponentData<GrpcClientSharedComponent<UCS.UCSClient>>(ucsGrpcEntity);
ucsGrpc.GrpcClient.Disconnect();
}
Debug.Log("ClearArVoxelGridSystem");
EntityManager.AddComponent<RemoveArVoxelGridComponentSingleton>(gridEntity);
EntityManager.DestroyEntity(e);
}).Run();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment