public static void ReadScene(List <string> listDatas)
        {
            int i = 0;

            //  每一行
            foreach (string s in listDatas)
            {
                EntryPoint("Scene_" + (i++).ToString());

                Debug.Log("----------Begin ReadScene ----------" + s);

                Dictionary <string, string> dic = ReadLine(s);

                BatArg arg = new BatArg(dic);

                ABPackageScene package = new ABPackageScene(arg);

                package.Package();

                Debug.Log("----------End ReadScene ----------");
            }
        }
        public static void ReadScene(List<string> listDatas)
        {
            int i = 0;

            //  每一行 
            foreach (string s in listDatas)
            {
                EntryPoint("Scene_" + (i++).ToString());

                Debug.Log("----------Begin ReadScene ----------" + s);

                Dictionary<string, string> dic = ReadLine(s);

                BatArg arg = new BatArg(dic);

                ABPackageScene package = new ABPackageScene(arg);

                package.Package();

                Debug.Log("----------End ReadScene ----------");

            }
        }