Aimbot-PPO/Aimbot-PPO-MultiScene/Assets/XCharts/Runtime/Component/VisualMap/VisualMapContext.cs
Koha9 2d404cfdf2 Aimbot Enviroment very first
Basic environment include Multi scene, Reward Change, Visible chart, etc....
2022-09-05 20:46:08 +09:00

19 lines
503 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace XCharts.Runtime
{
public class VisualMapContext : MainComponentContext
{
/// <summary>
/// 鼠标悬停选中的index
/// </summary>
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>();
}
}