Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 419 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 419 Bytes

AppsFlyer module for Godot Game Engine (for Android and iOS).

Install

Edit your engine.cfg and add this line:

[android]

modules="org/godotengine/godot/GodotAppsFlyer"

Use

if(Engine.has_singleton("GodotAppsFlyer")):
	apps_flyer = Engine.get_singleton("GodotAppsFlyer")
	apps_flyer.init("key", "app_id")
	apps_flyer.track_event("event", {"param1": 42})