Search Issue Tracker
Won't Fix
Won't Fix in 1.0.X
Votes
0
Found in [Package]
1.0.0-pre.16
Issue ID
UTRANS-2
Regression
Yes
"Resetting event queue with pending events" error thrown after connecting client to server
Reproduction steps:
1. Open the user's attached project "netcode-tests.zip"
2. Enter Play mode
3. Observe the Console window
Expected result: "Server received TestPacket" and "Client received TestPacketReplay" are logged in the Console window
Actual result: "Resetting event queue with pending events (Count=1, ConnectionID=0) Listening: 1" error is thrown
Reproducible with: 1.0.0-pre.14, 1.1.0-exp.1 (2020.3.26f1, 2020.3.30f1)
Not reproducible with: 1.0.0-pre.14, 1.1.0-exp.1 (2020.3.25f1)
Could not test with: 2019.4.36f1 (Not compatible with Collections 1.1.0), 2021.2.15f1, 2022.1.0b11, 2022.2.0a7 ("System.ArgumentException: Absolute path information is required.", "Can't get typecode for packet TestPacket")
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Memory leak occurs when focused on Player while using Direct3D12
- var VisionOSEDRHeadromm has a comma instead of a dot when building with Metal Rendering App Mode and local OS localization is set to German
- IAP Catalog remove product “x” and add product “+” buttons are not consistent with other remove and add buttons in the Editor
- Performance issues in Play Mode when quickly hovering the mouse cursor over Hierarchy GameObjects
- Frame Debugger displays incorrect output when FidelityFX Super Resolution or Spatial-Temporal Upscaler is used with Temporal Anti-aliasing or Subpixel Morphological Anti-aliasing
Resolution Note:
There are no fixes planned for this Bug
Resolution Note (1.0.X):
Updating to UTP 1.0 removed the mentioned error. Another one arose in the user code : quickly fixed by adding an `if(Instance != null)` , in the `PlayerLoopManager.cs` line 17 .
public static void RemoveUpdate(Action _delegate)
{ if(Instance!=null) Instance.updateSystem.OnTick -= _delegate; }
Closing as not a bug.