Example #1
0
    // antoher way of using api callback
    public static void ApiCallback(ironsource.Response response)
    {
        Debug.Log("from static callback: status = " + response.status);
        Text text = GameObject.Find("response_data").GetComponent <Text>();

        text.text = response.ToString();
    }
Example #2
0
 public void ApiCallbackStr(ironsource.Response response)
 {
     Debug.Log("response code from str: " + response.status);
 }