My goal is to find out which moods and color schemes, fit a randomly generated level.
The levels use the same integer seed to generate, but switch the mood randomly.
My aim is to use data to figure out which moods fit which levels the best.
public void CompleteAnalytics()
{
Dictionary<string, object> customParams = new Dictionary<string, object>();
customParams.Add("completion_time", this.completionTime);
customParams.Add("mood", this.Mood.Id);
AnalyticsEvent.LevelComplete(this.LevelData.seed, customParams);
}
public void StartAnalytics()
{
Dictionary<string, object> customParams = new Dictionary<string, object>();
customParams.Add("mood", this.Mood.Id);
AnalyticsEvent.LevelStart(this.LevelData.seed, customParams);
}
@topitsky Whichever structure you decide upon, I would highly encourage you to create a test report as soon as possible in your Dashboard to confirm that the event structure will work for you.
Do I need a funnel for this? I don’t understand, I’m able to see my custom event parameters in the Dashboard, but the data is not linked in anyway. I need to know the completion time for each seed generated, linked with mood, so I can do comparison which performs the best.
Oh damn thats expensive. You dont see any otherway of having the seed as key, and mood as the only attribute, and somehow linking them? Otherwise I think I have a look at Firebase