2021-06-12 14:32:23 +08:00
|
|
|
/************************************************/
|
|
|
|
|
/* */
|
|
|
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
|
|
|
/* https://github.com/monitor1394 */
|
|
|
|
|
/* */
|
|
|
|
|
/************************************************/
|
|
|
|
|
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEditor.Build;
|
|
|
|
|
|
|
|
|
|
namespace XCharts
|
|
|
|
|
{
|
2021-06-18 06:48:11 +08:00
|
|
|
[System.Obsolete]
|
2021-06-12 14:32:23 +08:00
|
|
|
public class XChartsBuild : IPreprocessBuild, IPostprocessBuild
|
|
|
|
|
{
|
|
|
|
|
public int callbackOrder => 1;
|
|
|
|
|
|
|
|
|
|
public void OnPostprocessBuild(BuildTarget target, string path)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnPreprocessBuild(BuildTarget target, string path)
|
|
|
|
|
{
|
|
|
|
|
XThemeMgr.ExportAllCustomTheme();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|