NewPlayer
Introduction
Backend Name:
new_player
Description: A new player entered the game
Event Type:
Game
Priority:
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);