Firstborn/Library/PackageCache/com.unity.scriptablebuildpi.../Editor/Tasks/RebuildSpriteAtlasCache.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

33 lines
938 B
C#

using UnityEditor.Build.Pipeline.Injector;
using UnityEditor.Build.Pipeline.Interfaces;
using UnityEditor.Sprites;
using UnityEditor.U2D;
namespace UnityEditor.Build.Pipeline.Tasks
{
/// <summary>
/// Builds the cache data for all sprite atlases.
/// </summary>
public class RebuildSpriteAtlasCache : IBuildTask
{
/// <inheritdoc />
public int Version { get { return 1; } }
#pragma warning disable 649
[InjectContext(ContextUsage.In)]
IBuildParameters m_Parameters;
#pragma warning restore 649
/// <inheritdoc />
public ReturnCode Run()
{
// TODO: Need a return value if this ever can fail
#if !UNITY_2020_1_OR_NEWER
Packer.RebuildAtlasCacheIfNeeded(m_Parameters.Target, true, Packer.Execution.Normal);
#endif
SpriteAtlasUtility.PackAllAtlases(m_Parameters.Target);
return ReturnCode.Success;
}
}
}