XChartsBuild.cs 761 B

123456789101112131415161718192021222324252627
  1. /************************************************/
  2. /* */
  3. /* Copyright (c) 2018 - 2021 monitor1394 */
  4. /* https://github.com/monitor1394 */
  5. /* */
  6. /************************************************/
  7. using UnityEditor;
  8. using UnityEditor.Build;
  9. namespace XCharts
  10. {
  11. [System.Obsolete]
  12. public class XChartsBuild : IPreprocessBuild, IPostprocessBuild
  13. {
  14. public int callbackOrder { get { return 1; } }
  15. public void OnPostprocessBuild(BuildTarget target, string path)
  16. {
  17. }
  18. public void OnPreprocessBuild(BuildTarget target, string path)
  19. {
  20. XThemeMgr.ExportAllCustomTheme();
  21. }
  22. }
  23. }