Я могу войти, проверить и обновить достижения и списки лидеров, но моя проблема в том, что когда я добавляю строку: .EnableSavedGames()
для создания конфигурации, она даже не входит в систему.
У меня активирована функция сохранения игрыв приложении на консоли служб Google.
Спасибо за помощь:)
using System.Collections;
using System;
using System.Collections.Generic;
using UnityEngine;
using GooglePlayGames.BasicApi;
using GooglePlayGames.BasicApi.SavedGame;
using GooglePlayGames;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
.EnableSavedGames()
.Build();
PlayGamesPlatform.InitializeInstance(config);
PlayGamesPlatform.Activate();
if (PlayGamesPlatform.Instance.IsAuthenticated()==false)
{
PlayGamesPlatform.Instance.Authenticate(SignInCallback, true);
}