update asset bundle collector

This commit is contained in:
hevinci
2023-09-25 18:37:49 +08:00
parent 054ee93360
commit d560d8a2e8
5 changed files with 19 additions and 1 deletions

View File

@@ -2,6 +2,15 @@
namespace YooAsset.Editor
{
[DisplayName("定位地址: 禁用")]
public class AddressDisable : IAddressRule
{
string IAddressRule.GetAssetAddress(AddressRuleData data)
{
return string.Empty;
}
}
[DisplayName("定位地址: 文件名")]
public class AddressByFileName : IAddressRule
{