NewPlayer
Introduction
Backend Name:
new_playerDescription: A new player entered the game
Event Type:
GamePriority:
P5
Parameters
| Name | Type | Select | Backend name | Description |
|---|---|---|---|---|
| additionalData | Dictionary | Optional | additional_data | Any additional information |
Code example
Dictionary<string, object> additionalData = new Dictionary<string, object>
{
{ "Round", 12 },
{ "Health", 9 },
{ "Total Coins", 100 }
};
LionAnalytics.NewPlayer(additionalData);