暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ChartConst.cs 324B

1234567891011
  1. using UnityEngine;
  2. namespace XCharts.Runtime
  3. {
  4. public static class ChartConst
  5. {
  6. public static readonly Color32 clearColor32 = new Color32(0, 0, 0, 0);
  7. public static readonly Color32 greyColor32 = new Color32(128, 128, 128, 255);
  8. public static readonly Color clearColor = Color.clear;
  9. }
  10. }