Ei kuvausta
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.

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