Noticias

¡RECUERDA QUE SI ERES UN NUEVO USUARIO, DEBES PRESENTARTE PARA PODER PUBLICAR MENSAJES! | TENEMOS CANAL OFICIAL DE TELEGRAM: t.me/unity3dspain

No puedo hacer Login

Iniciado por neker92, Octubre 13, 2016, 08:38:15 PM

Tema anterior - Siguiente tema
Octubre 13, 2016, 08:38:15 PM Ultima modificación: Octubre 14, 2016, 07:39:37 AM por pioj
hola amigos, mi proyecto ya esta casi terminado y también lo estoy implementando el plugin : google play game services (ya esta creado en google develope el Leaderboard) La cuestión es que cuando instalo el juego en mi celular y quiero que se active Los permisos de google play  NO SALE NADA... En el boton de LOGIN  esta este script (esta ON Click):
 

using UnityEngine;
using System.Collections;
using GooglePlayGames;
using UnityEngine.SocialPlatforms;
public class Gameservices : MonoBehaviour
{
 
    void Start()
    {
    PlayGamesPlatform.Activate();
    }
    public void Awake()
    {
    }
    public void ConectarGoogle() {
        Social.localUser.Authenticate((bool success) =>
        {
            if (success)
            {
                Debug.Log("Autenticacion correcta");
            }
            else
            {
                Debug.Log("Error al autenticar");
            }
        });
    }
}

 
Espero que me ayudennnnn xfaaa

Etiquetas: