19 lines
612 B
C#
19 lines
612 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using UnityEditor;
|
|||
|
|
|||
|
namespace YooAsset.Editor
|
|||
|
{
|
|||
|
public class TaskCreateReport_SBP : TaskCreateReport, IBuildTask
|
|||
|
{
|
|||
|
void IBuildTask.Run(BuildContext context)
|
|||
|
{
|
|||
|
var buildParameters = context.GetContextObject<BuildParametersContext>();
|
|||
|
var buildMapContext = context.GetContextObject<BuildMapContext>();
|
|||
|
var manifestContext = context.GetContextObject<ManifestContext>();
|
|||
|
CreateReportFile(buildParameters, buildMapContext, manifestContext);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|