Files
XCharts/Runtime/Component/VisualMap/VisualMapContext.cs

20 lines
504 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
using System.Collections.Generic;
using UnityEngine;
namespace XCharts
{
2021-11-23 13:20:07 +08:00
public class VisualMapContext : MainComponentContext
{
/// <summary>
2021-11-23 13:20:07 +08:00
/// 鼠标悬停选中的index
/// </summary>
2021-11-23 13:20:07 +08:00
public int pointerIndex { get; set; }
public double pointerValue { get; set; }
public bool minDrag { get; internal set; }
public bool maxDrag { get; internal set; }
internal List<Color32> inRangeColors = new List<Color32>();
}
}