Пример #1
0
 /// <summary>
 /// Errors the call back.
 /// </summary>
 private static void errorCallBack(Http.ErrorEntity.Error error)
 {
     _success = true;
     if (_success == true)
     {
         _httpCatchData = null;
     }
 }
Пример #2
0
        private void CallBackError(Http.ErrorEntity.Error result)
        {
            // ポイントないから課金へとべ
            if (LocalMsgConst.POINT_SHORTAGE == result.error[0])
            {
                PopupPanel.Instance.PopMessageInsert
                (
                    result.error[0],
                    LocalMsgConst.OK,
                    JumpPurchaseScene
                );

                PanelPopupAnimate(GameObject.FindGameObjectWithTag(CommonConstants.POPUP_BASIC_TAG));
            }
        }