Can Show Rate

Description

It checks all conditions from the Settings Window and determines if they are met or not.

Declaration

public static bool CanShowRate()

Returns

true - If ALL conditions from the Settings Window are met

Example

public class Test : MonoBehaviour
{
    public void DoSomething()
    {
        if (Gley.RateGame.API.CanShowRate())
        {
            //all conditions are met, rate popup will be displayed now if called
            Gley.RateGame.API.ShowRatePopup();
        }
    }
}

Last updated