Added more ticking functions

This commit is contained in:
AeonLucid
2022-01-15 04:34:25 +01:00
parent 5897fce8ad
commit 14ce748c5c
12 changed files with 163 additions and 18 deletions
+4 -1
View File
@@ -33,7 +33,10 @@ public abstract partial class UWorld : FNetworkNotify, IAsyncDisposable
if (NetDriver != null)
{
NetDriver.TickDispatch(deltaTime);
NetDriver.ConnectionlessHandler?.Tick(deltaTime);
NetDriver.PostTickDispatch();
NetDriver.TickFlush(deltaTime);
NetDriver.PostTickFlush();
}
}