Track
Learn about the methods for tracking game activity.
This is the previous version (1.x) of Tealium for Unity. For the current version, see Tealium for Unity 2.x.
Track View
To track a view in a game, call the TrackView()
method:
Dictionary<string, string> data = new Dictionary<string, string>() {
{"user_id", "gamer123"},
{"level": 2},
{"total_points": 17500}};
Tealium.TrackView("level_completed_screen", data);
Track Event
To track a user’s interaction with a game, such as achievement_unlocked
or level_started
, call the TrackEvent()
method.
Dictionary<string, string> data = new Dictionary<string, string>() {
{"user_id", "gamer123"},
{"level": 2},
{"bonus_points": 1500}};
Tealium.TrackView("level_completed", data);
This page was last updated: September 24, 2025