Ejemplo n.º 1
0
 public void LoadAsync <T>(string filePath, Action <T> onComplete, Action onFail)
     where T : Object
 {
     ClioneCore.Run(LoadAsyncEnumerator(filePath, onComplete, onFail));
 }
Ejemplo n.º 2
0
 public void Show(string drillDownPath, object param, Action onComplete)
 {
     ClioneCore.Run(ShowEnumerator(drillDownPath, param, onComplete));
 }
Ejemplo n.º 3
0
 public static void LoadWindow(string windowPath, string screenPath, Action onComplete = null)
 {
     ClioneCore.Run(LoadWindowEnumerator(windowPath, screenPath, onComplete));
 }
Ejemplo n.º 4
0
 public static void LoadScreen(string screenPath, Action onComplete = null)
 {
     ClioneCore.Run(LoadScreenEnumerator(screenPath, onComplete));
 }
Ejemplo n.º 5
0
 public static void LoadScene(string sceneName, object param = null, Action onComplete = null, Action onFail = null)
 {
     ClioneCore.Run(LoadSceneEnumerator(sceneName, param, onComplete, onFail));
 }