コード例 #1
0
 private void HandleInsertFailure(string error)
 {
     SavePendingRecord();
     _loadingImg.SetActive(false);
     _panelNotification?.NotifyFailure(_saveRecordFailureMsg);
     HideInput();
     Debug.LogError(error);
 }
コード例 #2
0
 private void DisplayServerError(string error)
 {
     _loadingImg.SetActive(false);
     Instantiate(_errorMsg, _entriesGroup.transform);
     _panelNotification?.NotifyFailure(_failToConnectMsg);
 }