统一退出谷歌游戏服务

问题描述 投票:0回答:1

如何在unity中注销gpg?并更改按钮文本以登录?

我试过这个但什么都没有:

Social.localUser.Authenticate(success => 
{
    LoadData();
});
android unity-game-engine google-play-services
1个回答
1
投票

要注销用户,请使用

PlayGamesPlatform.SignOut
方法。

using GooglePlayGames;
using UnityEngine.SocialPlatforms;

// sign out
PlayGamesPlatform.Instance.SignOut();

注销后,在用户再次进行身份验证之前,无法进行进一步的 API 调用。

有关更多信息,请参阅此GitHub 帖子,有关登录流程的更多详细信息,请参阅此文档

© www.soinside.com 2019 - 2024. All rights reserved.