在 Unity 中从 Google 玩游戏服务访问用户数据
Accessing users data from Google play game services in Unity
我想为我的 Unity 游戏实施 Google Play 游戏服务以获得排行榜、成就等。如何获取姓名、出生日期等用户数据?我正在使用 Google Play game services unity plugin found here:
https://github.com/playgameservices/play-games-plugin-for-unity
您可以通过这样的函数访问他们的名字:
PlayGamesPlatform.Instance.RealTime.GetSelf().Displayname
但您无法访问其他角色信息。
我想为我的 Unity 游戏实施 Google Play 游戏服务以获得排行榜、成就等。如何获取姓名、出生日期等用户数据?我正在使用 Google Play game services unity plugin found here: https://github.com/playgameservices/play-games-plugin-for-unity
您可以通过这样的函数访问他们的名字:
PlayGamesPlatform.Instance.RealTime.GetSelf().Displayname
但您无法访问其他角色信息。