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

24 lines
752 B
C#

using System.Text.RegularExpressions;
using UnityEditor.Build.Pipeline.Interfaces;
namespace UnityEditor.Build.Pipeline.Utilities
{
internal static class TrackerExtensions
{
public static string HumanReadable(this string camelCased)
{
return Regex.Replace(camelCased, @"(\B[A-Z]+?(?=[A-Z][^A-Z])|\B[A-Z]+?(?=[^A-Z]))", " $1");
}
public static bool UpdateTaskUnchecked(this IProgressTracker tracker, string taskTitle)
{
return tracker == null || tracker.UpdateTask(taskTitle);
}
public static bool UpdateInfoUnchecked(this IProgressTracker tracker, string taskInfo)
{
return tracker == null || tracker.UpdateInfo(taskInfo);
}
}
}