説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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