在我的游戏中,我尝试使用游戏中心用户ID登录Playfab。
Social.Active.localUser.Authenticate(
(s)=>
{
GameCenterUserName = Social.localUser.userName;
GameCenterUsedID = Social.localUser.id;
});我使用上面的代码,但它总是返回GameCenterUsedID = "1000“和GameCenterUserName ="Lerpz”。在这方面能帮到我吗?谢谢
发布于 2021-02-19 17:53:36
你需要。PlayFabClientAPI.LoginWithGameCenter
Social类是unity内置的。
https://stackoverflow.com/questions/66274849
复制相似问题