Exemplo n.º 1
0
 public static CustomYieldInstruction Show(this PageChanger selfObj, bool customYieldInstruction)
 {
     return(new WaitForStandardYieldInstruction(PageChanger._viewController, selfObj._Show()));
 }
Exemplo n.º 2
0
 public static PageChanger SetIgnoreTimeScale(this PageChanger selfObj, bool ignoreTimeScale)
 {
     selfObj._ignoreTimeScale = ignoreTimeScale;
     return(selfObj);
 }
Exemplo n.º 3
0
 public static YieldInstruction Show(this PageChanger selfObj)
 {
     return(selfObj._Show());
 }
Exemplo n.º 4
0
 public static PageChanger SetWaitPreviousPageFinish(this PageChanger selfObj, bool wait)
 {
     selfObj._waitPreviousPageFinish = wait;
     return(selfObj);
 }
Exemplo n.º 5
0
 public static PageChanger OnChanged(this PageChanger selfObj, Action OnChanged)
 {
     selfObj._OnChanged = OnChanged;
     return(selfObj);
 }
Exemplo n.º 6
0
 public static PageChanger OnComplete(this PageChanger selfObj, Action OnComplete)
 {
     selfObj._OnComplete = OnComplete;
     return(selfObj);
 }
Exemplo n.º 7
0
 public static PageChanger OnStart(this PageChanger selfObj, Action OnStart)
 {
     selfObj._OnStart = OnStart;
     return(selfObj);
 }
Exemplo n.º 8
0
 public static PageChanger SetPage(this PageChanger selfObj, string targetPageName)
 {
     selfObj._targetPage = targetPageName;
     return(selfObj);
 }