Class AnalyticsKit
Inheritance
System.Object
AnalyticsKit
Namespace: Pley
Assembly: Pley.dll
Syntax
public static class AnalyticsKit : object
Methods
GameLoaded()
Should be called when the initial loading screen is complete and the game is playable by the user.
Declaration
public static PleyResult GameLoaded()
Returns
Type | Description |
---|---|
PleyResult | In case the method has already been used it will return AtkEventAlreadyReported |
UserEngaged()
Should be called when the user is considered engaged. The timing of this event will vary from game to game, but should be triggered once the initial tutorial is completed or the first level is passed
Declaration
public static PleyResult UserEngaged()
Returns
Type | Description |
---|---|
PleyResult | In case the method has already been used it will return AtkEventAlreadyReported |
UserInteracted()
Should be called when the user makes their first game interaction, such as pressing a button or interacting with a game mechanic.
Declaration
public static PleyResult UserInteracted()
Returns
Type | Description |
---|---|
PleyResult | In case the method has already been used it will return AtkEventAlreadyReported |