コード例 #1
0
ファイル: Snake.cs プロジェクト: Berkant13/snake
 // Use this for initialization
 void Start()
 {
     //clear score
     pointCounter.clear();
     // move the snake every 75ms
     InvokeRepeating("Move", 0.075f, 0.075f);
 }