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

40 lines
1.3 KiB
C#

using System;
namespace UnityEditor.Build.Pipeline.Utilities
{
/// <summary>
/// Logs information about the progress tracker.
/// </summary>
public class ProgressLoggingTracker : ProgressTracker
{
/// <summary>
/// Creates a new progress tracking object.
/// </summary>
public ProgressLoggingTracker()
{
BuildLogger.Log(string.Format("[{0}] Progress Tracker Started.", DateTime.Now.ToString()));
}
/// <inheritdoc/>
public override bool UpdateTask(string taskTitle)
{
BuildLogger.Log(string.Format("[{0}] {1:P2} Running Task: '{2}'", DateTime.Now.ToString(), Progress.ToString(), taskTitle));
return base.UpdateTask(taskTitle);
}
/// <inheritdoc/>
public override bool UpdateInfo(string taskInfo)
{
BuildLogger.Log(string.Format("[{0}] {1:P2} Running Task: '{2}' Information: '{3}'", DateTime.Now.ToString(), Progress.ToString(), CurrentTaskTitle, taskInfo));
return base.UpdateInfo(taskInfo);
}
/// <inheritdoc/>
protected override void Dispose(bool disposing)
{
BuildLogger.Log(string.Format("[{0}] Progress Tracker Completed.", DateTime.Now.ToString()));
base.Dispose(disposing);
}
}
}