コード例 #1
0
        private static ProgressUi ShowBlockingProgressUiFor(ViewStack self,
                                                            string blockingProgressViewPrefabName, ProgressManager prManager)
        {
            GameObject prGo = self.ShowView(blockingProgressViewPrefabName);
            ProgressUi prUi = prGo.GetComponentInChildren <ProgressUi>();

            prUi.onProgressUiComplete += () => { prGo.GetViewStack().SwitchBackToLastView(prGo); };
            prUi.progressManager       = prManager;
            return(prUi);
        }
コード例 #2
0
ファイル: ViewStackHelper.cs プロジェクト: cs-util-com/cscore
 public static GameObject SwitchToView(this ViewStack target, GameObject newView, int siblingIndex = -1)
 {
     return(target.ShowView(newView, target.GetLatestView(), siblingIndex));
 }
コード例 #3
0
ファイル: ViewStackHelper.cs プロジェクト: cs-util-com/cscore
 public static GameObject SwitchToView(this ViewStack target, string prefabName, int siblingIndex = -1)
 {
     return(target.ShowView(prefabName, target.GetLatestView(), siblingIndex));
 }