update asset bundle collector

增加了AddressDisable规则
This commit is contained in:
hevinci
2023-09-25 18:19:48 +08:00
parent bcb6443300
commit ade97605f9
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
{