Aimbot-PPO/Aimbot-PPO-MultiScene/Assets/XCharts/Runtime/Coord/Polar/PolarCoordContext.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

20 lines
518 B
C#

using System;
using UnityEngine;
namespace XCharts.Runtime
{
public class PolarCoordContext : MainComponentContext
{
/// <summary>
/// the center position of polar in container.
/// |极坐标在容器中的具体中心点。
/// </summary>
public Vector3 center;
/// <summary>
/// the true radius of polar.
/// |极坐标的运行时实际半径。
/// </summary>
public float radius;
public bool isPointerEnter;
}
}