Beispiel #1
0
 public void PushScene(CozyScene scene)
 {
     if(RunningScene != null)
     {
         scenesStack.Push(RunningScene);
     }
     RunningScene = scene;
 }
Beispiel #2
0
 public void PushScene(CozyScene scene)
 {
     if (RunningScene != null)
     {
         scenesStack.Push(RunningScene);
     }
     RunningScene = scene;
 }
Beispiel #3
0
 public void ReplaceScene(CozyScene scene)
 {
 }
Beispiel #4
0
 public void RunWithScene(CozyScene scene)
 {
     PushScene(scene);
 }
Beispiel #5
0
 public void ReplaceScene(CozyScene scene)
 {
 }
Beispiel #6
0
 public void RunWithScene(CozyScene scene)
 {
     PushScene(scene);
 }