Force Show Rate Popup

Description

Shows the rate popup even if not all conditions from the Settings Window are met.

Declaration

public static void ForceShowRatePopup(UnityAction popupClosed = null)

Parameters

Example

public class Test : MonoBehaviour
{
    public void ShowRatePopup()
    {
        Gley.RateGame.API.ForceShowRatePopup(PopupClosed);
    }

    private void PopupClosed()
    {
        Debug.Log("Resume Game");
    }
}

Last updated