Unity app doesn't track predictions correctly
I have an app that is in Unity that is supposed to track my Predictions(ms) but it just displays zero on my headset. Here is my code below: csharp using UnityEngine; using TMPro; public class GetPredAmount : MonoBehaviour { public TMP_Text textComponent; void Start() { } void Update() { var metrics = OVRMetricsToolSDK.Instance.GetLatestMetricsSnapshot(); if (metrics != null && metrics.HasValue) { textComponent.text = metrics.Value.average_prediction_milliseconds.ToString(); } else { textComponent.text = "Metrics not available"; } } } I am using the OVR Metrics Tool unity package533Views0likes0CommentsUserAgeCategory Error
Two of our developers got a error in the "UserAgeCategory.Get().OnComplete" callback that just said "400". I can't find anything about what this error message could indicate. Doesn't seem to happen to me I think I'm the only one who "Owns" the game The other are invited to separate branches (not sure if that counts as owning, as it passes the entitlement check), so I'm wondering if this has something to do with developer accounts or something else?519Views0likes0Comments