Allows you to open the google play store on your application in order to rate it.
Edit engine.cfg
and add an android
part as following:
[android]
modules="org/godotengine/godot/GodotRateIt"
Here is an example
extends Node
onready var godot_rateit = Globals.get_singleton('GodotRateIt')
func rate_it():
if OS.get_name() == 'Android' and godot_rateit != null:
print('Debug, rating the app %s' % [ godot_rateit.get_version()])
godot_rateit.rate()