Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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