Merge pull request #283 from microsoft/fix/display-userid

The value of the new UserID changes back to the value of the previous Startup mode
This commit is contained in:
Guillaume Perrot 2019-07-22 13:49:44 -07:00 коммит произвёл GitHub
Родитель c43449bb0a 349fe60bfe
Коммит 0ac2d4ac21
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -257,6 +257,7 @@ public class PuppetAppCenter : MonoBehaviour
public void OnUserIdChanged(string newUserId)
{
_customUserId = newUserId;
PlayerPrefs.SetString(UserIdKey, newUserId);
AppCenter.SetUserId(newUserId);
}