示例#1
0
 public void ShowOverlayWithWebPage(string url)
 {
     Debug.Log("Opening overlay with web page " + url);
     try
     {
         GalaxyInstance.Utils().ShowOverlayWithWebPage(url);
         Debug.Log("Opened overlay with web page " + url);
     }
     catch (GalaxyInstance.Error e)
     {
         Debug.Log("Could not open overlay with web page " + url + " for reason " + e);
     }
 }