PowerUpUsed
The player used a power up or boost.
Name
Type
Select
Backend name
Description
missionID
string
Required
mission_id
The unique ID for the mission.
missionType
string
Required
mission_type
Indicate the type of the mission, level, task, quests etc.
missionAttempt
int
Required
mission_attempt
Number of times user has played Game Level N (second play of Game Level N = 2)
powerUpName
string
Required
power_up_name
The name of the power up.
missionName
string
Required
mission_name
The name of the mission
additionalData
Dictionary<string, object>
Optional
additional_data
Any additional information
Code examples:
Dictionary<string, object> additionalData = new Dictionary<string, object>
{
{ "PowerUpRemaining", "25" },
{ "Multiplier", "X2.5" }
};
LionAnalytics.PowerUpUsed(
missionID: "2",
missionType: "main",
missionAttempt: 10,
powerUpName: "JumpDash",
missionName: "main_",
additionalData: additionalData);Last updated
Was this helpful?