Files
XCharts/Runtime/Internal/Utilities/ChartConst.cs
2022-01-05 21:40:48 +08:00

12 lines
317 B
C#

using UnityEngine;
namespace XCharts
{
public static class ChartConst
{
public static readonly Color32 clearColor32 = new Color32(0, 0, 0, 0);
public static readonly Color32 greyColor32 = new Color32(128, 128, 128, 255);
public static readonly Color clearColor = Color.clear;
}
}