Example #1
0
 public void SetAttributesCallback(SetSessionAttributesEventData eventData)
 {
     //Step 13: Callback for when session attributes have been updated
     Debug.Log(displayName + " OnSetAttributes");
     if (eventData.IsError)
     {
         Debug.LogError(eventData.Exception.Message);
     }
 }
Example #2
0
 private void SetAttributesCallback(SetSessionAttributesEventData eventData)
 {
     //Callback for when session attributes have been updated
     Debug.Log("OnSetAttributes");
     if (eventData.IsError)
     {
         Debug.LogError(eventData.Exception.Message);
     }
 }