예제 #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);
 }