/godotrequestreview

Godot module for prompting users to leave a review on your app in the App Store

Primary LanguageC++MIT LicenseMIT

GodotRequestReview

Godot module for prompting users to leave a review for your godot app in the App Store

How to use in your project

Place this module within the modules folder inside your godot source directory

initialise variable

var iphoneRequestReview
if OS.get_name() == 'iOS':
    iphoneRequestReview = Engine.get_singleton("GodotRequestReview")

request review within your app logic

...
iphoneRequestReview.requestReview()
...

Example in Game