public static void JustDownloadItemsVerify(List <WWWItem> wiList, object obj)
 {
     foreach (WWWItem current in wiList)
     {
         PostProcess.JustDownloadItemVerify(current, obj);
     }
 }
 public static void LoadComponents(List <WWWItem> wiList, object obj)
 {
     foreach (WWWItem current in wiList)
     {
         if (current.canAccessAssetBundle)
         {
             PostProcess.LoadComponent(current, obj);
         }
     }
 }
        public static void LoadComponent(WWWItem wItem, object obj)
        {
            switch (wItem.itemType)
            {
            case ItemType.AUDIO:
                PostProcess.LoadComponentAudioClip(wItem, obj);
                break;

            case ItemType.MATERIAL:
                PostProcess.LoadComponentMaterial(wItem, obj);
                break;
            }
        }