コード例 #1
0
ファイル: GameManager.cs プロジェクト: MaddieMclean/BlobFit
 IEnumerator Move()
 {
     while (true)
     {
         move = gpsManager.Moving();
         if (move)
         {
             GPSupdate();
         }
         yield return(new WaitForSeconds(10f));
     }
 }