Inheritance: UnityEngine.MonoBehaviour
 static public int Init(IntPtr l)
 {
     try {
         GameFramework.Story.UiStoryInitializer self = (GameFramework.Story.UiStoryInitializer)checkSelf(l);
         self.Init();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int get_WindowName(IntPtr l)
 {
     try {
         GameFramework.Story.UiStoryInitializer self = (GameFramework.Story.UiStoryInitializer)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.WindowName);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_WindowName(IntPtr l)
 {
     try {
         GameFramework.Story.UiStoryInitializer self = (GameFramework.Story.UiStoryInitializer)checkSelf(l);
         System.String v;
         checkType(l, 2, out v);
         self.WindowName = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Ejemplo n.º 4
0
 private void LoadUi(int levelId)
 {
     TableConfig.Level level = TableConfig.LevelProvider.Instance.GetLevel(levelId);
     if (null != level)
     {
         int ct = level.SceneUi.Count;
         for (int i = 0; i < ct; ++i)
         {
             int            uiId = level.SceneUi[i];
             TableConfig.UI ui   = TableConfig.UIProvider.Instance.GetUI(uiId);
             if (null != ui)
             {
                 GameObject asset = UiResourceSystem.Instance.GetUiResource(ui.path) as GameObject;
                 if (null != asset)
                 {
                     GameObject uiObj = GameObject.Instantiate(asset);
                     if (null != uiObj)
                     {
                         uiObj.name = ui.name;
                         if (!string.IsNullOrEmpty(ui.dsl))
                         {
                             GameFramework.Story.UiStoryInitializer initer = uiObj.GetComponent <GameFramework.Story.UiStoryInitializer>();
                             if (null == initer)
                             {
                                 initer = uiObj.AddComponent <GameFramework.Story.UiStoryInitializer>();
                             }
                             if (null != initer)
                             {
                                 initer.WindowName = ui.name;
                                 initer.Init();
                             }
                         }
                     }
                 }
             }
         }
     }
 }