I have a new project, where I am setting up Analytics, of which I am still kinda noobish.
If I create a Analyitics_Mng, where by it has functions I call at various points to update Analytics, example:
public static void game_launched(){
//sent via splash.
Analytics.CustomEvent ("game_launched");
}
I am wondering two things, with the format of the example above,…
a ) do I need to go into Dashbaord and create a “game_launched”, parameter? If so, is it as a Funnel?
b) each time this function is called, will the Dashboard parameter, “game_launched”, go up 1. So game_launched++?
The dashboard is populated by the events that we receive from your game. So you only need to create them in your game and then they will be automatically added to the dashboard.
By default, there are a couple of ways to view each event In the dashboard: Number of Events and Unique Users. So Number of Users will give you the expected “game_launched++” count and Unique Users will give you the count of Unique Users that have sent that event.