작업 조건 분석 기능 개발
This commit is contained in:
22
Assets/Chart And Graph/Tutorials/Radar/RadarChartFeed.cs
Normal file
22
Assets/Chart And Graph/Tutorials/Radar/RadarChartFeed.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
#define Graph_And_Chart_PRO
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
using ChartAndGraph;
|
||||
|
||||
public class RadarChartFeed : MonoBehaviour {
|
||||
|
||||
// Use this for initialization
|
||||
void Start ()
|
||||
{
|
||||
var radar = GetComponent<RadarChart>();
|
||||
if (radar != null)
|
||||
{
|
||||
radar.DataSource.SetValue("Player 1", "A", 10);
|
||||
}
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update () {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user