[Unity] 구글 플레이 게임 서비스(GPGS) 기능 스크립트 작성
2019. 8. 11. 00:32
구글 플레이 게임 서비스(GPGS) 기능 스크립트 작성 * GooglePlayGames, GooglePlayGames.BasicApi 네임스페이스 사용 using GooglePlayGames; using GooglePlayGames.BasicApi; * 플레이 게임 클라이언트 구성 필요 PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder().RequestServerAuthCode(false).Build(); PlayGamesPlatform.InitializeInstance(config); PlayGamesPlatform.Activate(); * 로그인 상태 확인 및 로그인 하기 if (Social.localU..