123456789101112131415161718192021222324252627 |
- /************************************************/
- /* */
- /* Copyright (c) 2018 - 2021 monitor1394 */
- /* https://github.com/monitor1394 */
- /* */
- /************************************************/
- using UnityEditor;
- using UnityEditor.Build;
- namespace XCharts
- {
- [System.Obsolete]
- public class XChartsBuild : IPreprocessBuild, IPostprocessBuild
- {
- public int callbackOrder { get { return 1; } }
- public void OnPostprocessBuild(BuildTarget target, string path)
- {
- }
- public void OnPreprocessBuild(BuildTarget target, string path)
- {
- XThemeMgr.ExportAllCustomTheme();
- }
- }
- }
|