damnedpie / godot-appodeal

Appodeal 3.3.3 SDK plugin for Godot Engine Android export.
MIT License
4 stars 0 forks source link

Misspell in README #2

Closed stromperton closed 1 year ago

stromperton commented 1 year ago

Make sure to open your Godot project, go to Project -> Settings and add a new "Appodeal/AppKey" property (String). Store your Appodeal AppKey inside this property and reference it via ProjectSettings.get_setting("Appodeal/ApiKey").

damnedpie commented 1 year ago

It's not a misspell, really. Appodeal calls this string an "Application Key", so it's an AppKey. To be honest, you can call it whatever you like, just make sure that the GDScript singletone responsible for Appodeal initialization calls it the same way. Like: initialize(ProjectSettings.get_setting("Appodeal/WhateverYouWannaCallMe"), AdType.INTERSTITIAL|AdType.REWARDED_VIDEO)

UPD: Ah, I see what you meant. I have fixed the misspell, thanks a lot.