Example #1
0
 void Output(Automation auto)
 {
     string output = "";
     for (int i = 0; i < 11; i++)
     {
         output += string.Format("{0}, ", auto.GetValue((float)i * 0.1f));
     }
     Debug.Log(output);
 }