ChartConst.cs 623 B

123456789101112131415161718
  1. /************************************************/
  2. /* */
  3. /* Copyright (c) 2018 - 2021 monitor1394 */
  4. /* https://github.com/monitor1394 */
  5. /* */
  6. /************************************************/
  7. using UnityEngine;
  8. namespace XCharts
  9. {
  10. public static class ChartConst
  11. {
  12. public static readonly Color32 clearColor32 = new Color32(0, 0, 0, 0);
  13. public static readonly Color32 greyColor32 = new Color32(128, 128, 128, 255);
  14. public static readonly Color clearColor = Color.clear;
  15. }
  16. }