AirControl
1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
GaugeAxisTick.cs
1
/************************************************/
2
/* */
3
/* Copyright (c) 2018 - 2021 monitor1394 */
4
/* https://github.com/monitor1394 */
5
/* */
6
/************************************************/
7
8
using
UnityEngine;
9
10
namespace
XCharts
11
{
15
[System.Serializable]
16
public
class
GaugeAxisTick
:
BaseLine
17
{
18
[SerializeField]
private
float
m_SplitNumber = 5;
22
public
float
splitNumber
{
get
{
return
m_SplitNumber; }
set
{ m_SplitNumber = value; } }
23
public
GaugeAxisTick
(
bool
show
) : base(
show
)
24
{
25
}
26
}
27
}
XCharts.GaugeAxisTick
刻度
Definition:
GaugeAxisTick.cs:16
XCharts.GaugeAxisTick.splitNumber
float splitNumber
分割线之间的分割段数。
Definition:
GaugeAxisTick.cs:22
XCharts
Definition:
RewardChart.cs:14
XCharts.BaseLine
Settings related to base line. 线条基础配置。
Definition:
BaseLine.cs:17
XCharts.BaseLine.show
bool show
Set this to false to prevent the axis line from showing. 是否显示坐标轴轴线。
Definition:
BaseLine.cs:27
Assets
XCharts
Runtime
Component
Sub
GaugeAxisTick.cs
Github
|
About
| Developed with ❤️ in India