Inheritance: PlayFab.SharedModels.PlayFabResultCommon
コード例 #1
0
    void OnPhotonAuthenticationSuccess(GetPhotonAuthenticationTokenResult result)
    {

        Debug.Log(result.PhotonCustomAuthenticationToken);
        Debug.Log(AuthManager.playfabId);
        ConnectToMasterServer(AuthManager.playfabId, result.PhotonCustomAuthenticationToken);

    }
コード例 #2
0
	// callback on successful GetPhotonAuthenticationToken request 
	void OnPhotonAuthenticationSuccess(GetPhotonAuthenticationTokenResult result)
	{
		photonComponent.ConnectToMasterServer(this.playfabId, result.PhotonCustomAuthenticationToken);
	}
コード例 #3
0
	void OnPhotonAuthenticationSuccess(GetPhotonAuthenticationTokenResult result)
	{
		Debug.Log("token!");
        playerPhotonToken = result.PhotonCustomAuthenticationToken;
	}
コード例 #4
0
	private void OnPhotonAuthenticationSuccess (GetPhotonAuthenticationTokenResult result)
	{
		Debug.Log ("Photon Authentication Success");
		ConnectToMasterServer (playfabUserID, result.PhotonCustomAuthenticationToken);
	}