Quick Start

This page helps you get the plugin running as fast as possible. For advanced functionalities, we recommend checking the Complete API.

The same code works for both Android and iOS platforms.

The rate popup will be shown only if all conditions from the Settings Window are met at the time of the call

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

If you want to bypass the conditions from the Settings Window and show the rating popup on the spot use this example:

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

This concludes the Quick Start. Check the Complete API for advanced functionalities.

For a complete example check the scene included in the package:

Assets/Gley/RateGame/Example/Scenes/RateGameExample.unity

Last updated