Skip to main content
Version: 2022.1

自定义包名

当 xasset 自带的 BundleMode 不能满足你的需求时,你可以使用自定义打包器,为 BundleMode 为 PackByCustom 类型的分组中采集的资产分配自定义的包名。

这里是实现自定义打包器的示例代码:

public static class CustomPacker
{
[InitializeOnLoadMethod]
public static void Initialize()
{
Group.customPacker += SampleCustomPacker;
}

private static string SampleCustomPacker(string asset, string bundle, string group, string build)
{
return "custom";
}
}