コード例 #1
0
        public void SendStateCatchUpRequest()
        {
            int result;

#if UNITY_WEBGL && !UNITY_EDITOR
            result = SocketIOJSLib.SendStateCatchUpRequest();
#else
            result = socketSim.SendStateCatchUpRequest();
#endif
            if (result != SocketIOJSLib.SUCCESS)
            {
                connectionAdapter.DisplaySocketIOAdapterError("SendStateCatchUpRequest failed.");
            }
        }