Exemplo n.º 1
0
 protected override void LoadAsyncComplete()
 {
     // this has to be run here rather than LoadComplete because
     // TestScene.cs is checking the IsLoaded state (on another thread) and expects
     // the runner to be loaded at that point.
     Add(runner = new TestSceneTestRunner.TestRunner());
 }
Exemplo n.º 2
0
 protected override void LoadAsyncComplete()
 {
     BracketLoadTask.ContinueWith(_ => Schedule(() =>
     {
         // this has to be run here rather than LoadComplete because
         // TestScene.cs is checking the IsLoaded state (on another thread) and expects
         // the runner to be loaded at that point.
         Add(runner = new TestSceneTestRunner.TestRunner());
     }));
 }
Exemplo n.º 3
0
 protected override void LoadAsyncComplete()
 {
     Add(runner = new TestSceneTestRunner.TestRunner());
 }