/// <summary>
/// 获取 AB 源文件路径(打包进安装包的)
/// </summary>
/// <param name="path"></param>
/// <param name="forWWW"></param>
/// <returns></returns>
public static string GetBundleSourceFile(string path, bool forWWW = true)
{
string filePath = null;
#if UNITY_EDITOR
if (forWWW)
filePath = string.Format("file://{0}/StreamingAssets/{1}/{2}", Application.dataPath, BundleSaveDirName,
path);
else
filePath = string.Format("{0}/StreamingAssets/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
#elif UNITY_STANDALONE_WIN
if (forWWW)
filePath =
string.Format("file://{0}/StreamingAssets/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
else
filePath = string.Format("{0}/StreamingAssets/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
#elif UNITY_ANDROID
if (forWWW)
filePath =
string.Format("jar:file://{0}!/assets/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
else
filePath = string.Format("{0}!assets/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
#elif UNITY_IOS
if (forWWW)
filePath = string.Format("file://{0}/Raw/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
else
filePath = string.Format("{0}/Raw/{1}/{2}", Application.dataPath, BundleSaveDirName, path);
#else
throw new System.NotImplementedException();
#endif
// LuaInterface.Debugger.Log(string.Format("{1}:[{0}]", filePath, "filePath34445"));
return filePath;
}
Unity 获取 AB 源文件路径(打包进安装包的)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 说明时间首次发布2017年05月16日最近更新2020年01月27日 背景:我们从App Store下载的软件,在...
- 亲测过,现在网上很多获取的方法现在已经不适用了,今天改良一下获取的方法。前几个步骤跟前人大同小异,但是到了第三步你...
- 今天青石的票圈出镜率最高的,莫过于张艺谋的新片终于定档了。 一张满溢着水墨风的海报一次次的出现在票圈里,也就是老谋...