10-25-2016 06:18 AM
void Start()
{
Oculus.Platform.Core.Initialize();
Oculus.Platform.Achievements.GetAllProgress().OnComplete(delegate(Oculus.Platform.Message msg){
Oculus.Platform.Models.AchievementProgressList progressList = msg.GetAchievementProgressList();
//Do all the chek stuff with my system
});
}
I've been testing and I can say that the variable progressList is not null and the size of the list is 0.10-25-2016 09:10 AM
10-26-2016 06:12 AM
04-12-2018 12:04 PM