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

RadarCoordContext.cs 672B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. namespace XCharts.Runtime
  5. {
  6. public class RadarCoordContext : MainComponentContext
  7. {
  8. /// <summary>
  9. /// the center position of radar in container.
  10. /// |雷达图在容器中的具体中心点。
  11. /// </summary>
  12. public Vector3 center { get; internal set; }
  13. /// <summary>
  14. /// the true radius of radar.
  15. /// |雷达图的运行时实际半径。
  16. /// </summary>
  17. public float radius { get; internal set; }
  18. public float dataRadius { get; internal set; }
  19. public bool isPointerEnter { get; set; }
  20. }
  21. }