Firstborn/Library/PackageCache/com.unity.scriptablebuildpi.../Editor/Tasks/AppendBundleHash.cs
Schaken-Mods 7502018d20 Adding Mod Support
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
2023-05-13 22:01:48 -05:00

47 lines
1.3 KiB
C#

using System.IO;
using System.Linq;
using UnityEditor.Build.Pipeline.Injector;
using UnityEditor.Build.Pipeline.Interfaces;
namespace UnityEditor.Build.Pipeline.Tasks
{
/// <summary>
/// Append a hash to each bundle name.
/// </summary>
public class AppendBundleHash : IBuildTask
{
/// <inheritdoc />
public int Version { get { return 1; } }
#pragma warning disable 649
[InjectContext(ContextUsage.In)]
IBundleBuildParameters m_Parameters;
[InjectContext]
IBundleBuildResults m_Results;
#pragma warning restore 649
/// <inheritdoc />
public ReturnCode Run()
{
if (!m_Parameters.AppendHash)
return ReturnCode.SuccessNotRun;
string[] bundles = m_Results.BundleInfos.Keys.ToArray();
foreach (string bundle in bundles)
{
var details = m_Results.BundleInfos[bundle];
var oldFileName = details.FileName;
var newFileName = string.Format("{0}_{1}", details.FileName, details.Hash.ToString());
details.FileName = newFileName;
m_Results.BundleInfos[bundle] = details;
File.Delete(newFileName);
File.Move(oldFileName, newFileName);
}
return ReturnCode.Success;
}
}
}