Nessuna descrizione
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.

GridCoordContext.cs 538B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. public class GridCoordContext : MainComponentContext
  6. {
  7. public float x;
  8. public float y;
  9. public float width;
  10. public float height;
  11. public Vector3 position;
  12. public Vector3 center;
  13. public float left;
  14. public float right;
  15. public float bottom;
  16. public float top;
  17. public bool isPointerEnter;
  18. public List<ChartLabel> endLabelList = new List<ChartLabel>();
  19. }
  20. }