Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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