コード例 #1
0
 void OnPredictionFeedback(PredictionFeedback predictionFeedback)
 {
     listPrediction.Insert(0, predictionFeedback.raw);
     while (listPrediction.Count > 32)
     {
         listPrediction.RemoveAt(listPrediction.Count - 1);
     }
     Repaint();
 }
コード例 #2
0
 void OnPredictionFeedback(PredictionFeedback predictionFeedback)
 {
     listPrediction.Insert(0, predictionFeedback.raw);
     Repaint();
 }