예제 #1
0
    private void OnGotAccountInfo(GetAccountInfoResult result)
    {
        GetAccountInfoCommandResult getAccountInfoResult = new GetAccountInfoCommandResult
        {
            Username = result.AccountInfo.Username
        };

        Callback?.Invoke(getAccountInfoResult);
    }
예제 #2
0
    private void OnSetObjects(SetObjectsResponse result)
    {
        Debug.Log(result.ProfileVersion);
        Debug.Log(result.ToString());
        //Debug.Log(setResult.ProfileVersion);

        GetAccountInfoCommandResult getAccountInfoResult = new GetAccountInfoCommandResult
        {
            //Username = result.AccountInfo.Username
        };

        Callback?.Invoke(getAccountInfoResult);
    }