VR Version

Hi, is there any sort of user parameters that can be set for each user/session in analytics? ie: if I want to take a user as running the VR version of the game, can I do that or should I setup a custom event that is fired on start if the user is playing the VR version?

For a user? Yes. For a session? Not really.

For a user, you can create a Custom Event as described and then build a custom segment to look for that Custom Event.

https://unity3d.com/learn/tutorials/topics/analytics/introduction-custom-segments

Then that user would be added to that segment and you can check any data against that segment. However, this is assuming that a user will be exclusively VR. If you are making a game that simply has a VR mode and users can switch back and forth, then it might not capture that accurately. (Once the user sends the VR event, they will stay in the VR segment.)

There isn’t a straightforward way to do this for sessions. However, you could send VR-specific Custom Events so you can track VR users separately from normal users. And you can still use the event you mentioned (sent at the start of the game if the user is playing the VR mode) to count how many users are playing the VR mode per day.

Ok great that helps me understand it a bit better. Thank you!

1 Like