示例#1
0
    /// <summary>
    /// Shows a full screen  ad. This should be called after full screen ad data is retrieved from the server.
    /// </summary>
    public static void ShowFullScreenAd()
    {
        if (Application.platform == RuntimePlatform.OSXEditor)
        {
            return;
        }

        TapjoyPlatformPlugin.ShowFullScreenAd();
    }
示例#2
0
    public static void ShowFullScreenAd()
    {
        if (Application.isEditor)
        {
            return;
        }

        TapjoyPlatformPlugin.ShowFullScreenAd();
    }