Unityで位置情報を取得

Unityの準備 http://docs.unity3d.com/ScriptReference/LocationService.Start.html のサンプルソースを使います C#の場合、そのまま使うと以下のエラーになるので error CS0126: An object of a type convertible to `bool' is required for the return statement 文中のreturn;をyield break;に修正 using UnityEngine;u…