コード例 #1
0
 private void NotifyProgress(float progress)
 {
     Debug.Log("Loading progress is " + progress);
     if (progress == 1.0f)
     {
         LoadViewController.HideLoadProgress(OnFinishLoad);
     }
     else if (progress == -1.0f)
     {
         NotificationViewController.ShowNotification(Localization.Localize(StringKey.Msg_LoadSceneFail));
     }
     else
     {
         LoadViewController.NotifyProgress(progress);
     }
 }