parent
56d915936e
commit
15c57ac3fc
|
@ -97,7 +97,7 @@ namespace YooAsset
|
||||||
Manifest.AssetDic = new Dictionary<string, PackageAsset>(_packageAssetCount);
|
Manifest.AssetDic = new Dictionary<string, PackageAsset>(_packageAssetCount);
|
||||||
|
|
||||||
if (Manifest.EnableAddressable)
|
if (Manifest.EnableAddressable)
|
||||||
Manifest.AssetPathMapping1 = new Dictionary<string, string>(_packageAssetCount);
|
Manifest.AssetPathMapping1 = new Dictionary<string, string>(_packageAssetCount * 3);
|
||||||
else
|
else
|
||||||
Manifest.AssetPathMapping1 = new Dictionary<string, string>(_packageAssetCount * 2);
|
Manifest.AssetPathMapping1 = new Dictionary<string, string>(_packageAssetCount * 2);
|
||||||
|
|
||||||
|
@ -130,15 +130,6 @@ namespace YooAsset
|
||||||
Manifest.AssetDic.Add(assetPath, packageAsset);
|
Manifest.AssetDic.Add(assetPath, packageAsset);
|
||||||
|
|
||||||
// 填充AssetPathMapping1
|
// 填充AssetPathMapping1
|
||||||
if (Manifest.EnableAddressable)
|
|
||||||
{
|
|
||||||
string location = packageAsset.Address;
|
|
||||||
if (Manifest.AssetPathMapping1.ContainsKey(location))
|
|
||||||
throw new System.Exception($"Address have existed : {location}");
|
|
||||||
else
|
|
||||||
Manifest.AssetPathMapping1.Add(location, packageAsset.AssetPath);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
string location = packageAsset.AssetPath;
|
string location = packageAsset.AssetPath;
|
||||||
if (Manifest.LocationToLower)
|
if (Manifest.LocationToLower)
|
||||||
|
@ -146,7 +137,7 @@ namespace YooAsset
|
||||||
|
|
||||||
// 添加原生路径的映射
|
// 添加原生路径的映射
|
||||||
if (Manifest.AssetPathMapping1.ContainsKey(location))
|
if (Manifest.AssetPathMapping1.ContainsKey(location))
|
||||||
throw new System.Exception($"AssetPath have existed : {location}");
|
throw new System.Exception($"Location have existed : {location}");
|
||||||
else
|
else
|
||||||
Manifest.AssetPathMapping1.Add(location, packageAsset.AssetPath);
|
Manifest.AssetPathMapping1.Add(location, packageAsset.AssetPath);
|
||||||
|
|
||||||
|
@ -155,11 +146,19 @@ namespace YooAsset
|
||||||
{
|
{
|
||||||
string locationWithoutExtension = PathUtility.RemoveExtension(location);
|
string locationWithoutExtension = PathUtility.RemoveExtension(location);
|
||||||
if (Manifest.AssetPathMapping1.ContainsKey(locationWithoutExtension))
|
if (Manifest.AssetPathMapping1.ContainsKey(locationWithoutExtension))
|
||||||
YooLogger.Warning($"AssetPath have existed : {locationWithoutExtension}");
|
YooLogger.Warning($"Location have existed : {locationWithoutExtension}");
|
||||||
else
|
else
|
||||||
Manifest.AssetPathMapping1.Add(locationWithoutExtension, packageAsset.AssetPath);
|
Manifest.AssetPathMapping1.Add(locationWithoutExtension, packageAsset.AssetPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (Manifest.EnableAddressable)
|
||||||
|
{
|
||||||
|
string location = packageAsset.Address;
|
||||||
|
if (Manifest.AssetPathMapping1.ContainsKey(location))
|
||||||
|
throw new System.Exception($"Location have existed : {location}");
|
||||||
|
else
|
||||||
|
Manifest.AssetPathMapping1.Add(location, packageAsset.AssetPath);
|
||||||
|
}
|
||||||
|
|
||||||
// 填充AssetPathMapping2
|
// 填充AssetPathMapping2
|
||||||
if (Manifest.IncludeAssetGUID)
|
if (Manifest.IncludeAssetGUID)
|
||||||
|
|
Loading…
Reference in New Issue