加载AB包文件,加载bytes程序集资源,通过反射获取类,实例化添加组件,调用方法
public class LoadAB : MonoBehaviour
{private void Update(){if (Input.GetKeyDown(KeyCode.H)){Load();}}void Load(){string classname = "ID506_BrakeFiveStep";string RealClassName = "DriveEventAbstractParentClassNameSpace." + classname + "_AB";string Dll_bytesName = classname + ".bytes";string path = "D:/Desktop/newcode/AssetBundles/DriveEventAssests/id506_brakefivestep";AssetBundle ab = AssetBundle.LoadFromFile(path);ab.LoadAsset(Dll_bytesName);//将.bytes文件转化为TextAssetTextAsset VS_Dll_To_bytes = ab.LoadAsset(Dll_bytesName, typeof(TextAsset)) as TextAsset;//转化为byte数组byte[] by = VS_Dll_To_bytes.bytes;//通过反射获取想要的类Assembly am = Assembly.Load(by);Type type = am.GetType(RealClassName);//实例化这个类object obj;if (GetComponent(type) == null){gameObject.AddComponent(type);}obj = GetComponent(type);//直接调用string methodName = "InitAB";System.Object[] paras = new System.Object[] { "{'EventID':'506','Color':'yellow','OffsetMetre':'0'}" };MethodInfo method = type.GetMethod(methodName);method.Invoke(obj, paras);}
}