No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }