IEnumerator checkInternetConnection(Action<bool> action){
WWW www = new WWW("http://google.com");
yield return www;
if (www.error != null) {
action (false);
} else {
action (true);
}
}
void Start(){
StartCoroutine(checkInternetConnection((isConnected)=>{
// handle connection status here
}));
}
'프로그래밍 > 유니티 (unity)' 카테고리의 다른 글
구글플레이게임즈 google cloud OAuth 단계 안넘어갈때 (0) | 2023.02.13 |
---|---|
Google Cloud Platform에서 games, games_lite, drive.appdata 가 안뜰때 (0) | 2023.02.13 |
unity) script missing. 스크립트 이동시 주의사항 (0) | 2023.01.20 |
unity) 인터페이스 붙은 gameobject null check하는법 (0) | 2023.01.04 |
unity 플레이팹 사용중 TitleId 입력하라는 에러 (0) | 2022.12.23 |