You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Socket closure events now pass around the int code instead of the parsed enum value. This will cause errors anywhere that you have created custom _room.colyseusConnection.OnClose / _room.colyseusConnection.OnLeave events that are anticipating a WebSocketCloseCode argument rather than an int. The WebSocketCloseCode can still be obtained via WebSocketHelpers.ParseCloseCodeEnum(code)
Resolves issue of ColyseusRequest only working with a single instance of settings due to its static nature. ColyseusRequest now no longer has static methods. Moved the requests object out of ColyseusManager and into ColyseusClient. Each client now has its own instance of ColyseusRequest that can be initialized with its own endpoint or ColyseusSettings.