mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-14 03:58:55 +08:00
[+] Load AssetBundle without manifest
This commit is contained in:
32
AquaMai/UX/LoadAssetBundleWithoutManifest.cs
Normal file
32
AquaMai/UX/LoadAssetBundleWithoutManifest.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using HarmonyLib;
|
||||
using UnityEngine;
|
||||
using Manager;
|
||||
using Util;
|
||||
|
||||
namespace AquaMai.UX
|
||||
{
|
||||
public class LoadAssetBundleWithoutManifest
|
||||
{
|
||||
private static HashSet<string> abFiles = new HashSet<string>();
|
||||
|
||||
[HarmonyPostfix]
|
||||
[HarmonyPatch(typeof(OptionDataManager), "CheckAssetBundle")]
|
||||
public static void PostCheckAssetBundle(ref Safe.ReadonlySortedDictionary<string, string> abs)
|
||||
{
|
||||
foreach (var ab in abs)
|
||||
{
|
||||
abFiles.Add(ab.Key);
|
||||
}
|
||||
}
|
||||
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(AssetBundleManifest), "GetAllAssetBundles")]
|
||||
public static bool PreGetAllAssetBundles(AssetBundleManifest __instance, ref string[] __result)
|
||||
{
|
||||
__result = abFiles.ToArray();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user