8 using System.Collections;
16 [DisallowMultipleComponent]
25 chart = gameObject.GetComponent<
LineChart>();
26 if (chart ==
null) chart = gameObject.AddComponent<
LineChart>();
27 chart.title.text =
"Reward";
31 serie = chart.AddSerie(
SerieType.Line,
"Line");
33 chart.AddData(0, 0.0f);
34 StaticOutputSchema.Reward = 0;
40 Double fc = Math.Round(StaticOutputSchema.Reward,1);