예제 #1
0
 void ModelLoad()
 {
     //string modelPath = ZipUtility.FindModelFileFullName(resPath, out string format);
     //Debug.Log("---测试模型:" + modelPath);
     string[] foundFilePathlist = ZipUtility.FindModelFileFullNameList(resPath, out string fomat);
     for (int i = 0; i < ZipUtility.GetListFullName.Count; i++)
     {
         string modelPath = ZipUtility.GetListFullName[i];
         Debug.Log("---测试模型:" + modelPath);
         MiniLoadModel(modelPath);
     }
 }