Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
avvy
mobile-app
Commits
57d3ccbb
Commit
57d3ccbb
authored
2 years ago
by
YLLY-WS\Ylly
Browse files
Options
Download
Email Patches
Plain Diff
Fix
parent
8e102e66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Assets/AvvyLand/Scripts/ECS/Systems/InitSystemGroup/ResetAllSystem.cs
+0
-7
...and/Scripts/ECS/Systems/InitSystemGroup/ResetAllSystem.cs
Assets/AvvyLand/Scripts/ECS/Systems/RebootSystems/ClearArVoxelGridSystem.cs
+12
-7
...ripts/ECS/Systems/RebootSystems/ClearArVoxelGridSystem.cs
with
12 additions
and
14 deletions
+12
-14
Assets/AvvyLand/Scripts/ECS/Systems/InitSystemGroup/ResetAllSystem.cs
View file @
57d3ccbb
...
...
@@ -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
>())
...
...
This diff is collapsed.
Click to expand it.
Assets/AvvyLand/Scripts/ECS/Systems/RebootSystems/ClearArVoxelGridSystem.cs
View file @
57d3ccbb
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
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help