public void GetEvents() { Debug.Log("FuelSDKGrooveIntegration - GetEvents called."); List <object> tags = GetEventTags(); FuelSDK.GetEvents(tags); }
public void GetEvents() { List <object> tags = new List <object> (); tags.Add("allowedMissions"); tags.Add("allowedQuests"); // retrieve events for the given fake tag set FuelSDK.GetEvents(tags); }
public void GetEvents() { List <object> tags = new List <object>(); tags.Add("BronzeFilter"); tags.Add("bronzeSong1"); tags.Add("bronzeSong2"); bool success = FuelSDK.GetEvents(tags); if (success == true) { //Everything is good you can expect your data in the event callback } }
public void GetEventsWithTags() { ResetEventsRecieved(); List <object> eventFiltertags = GetEventFilterTags(); FuelSDK.GetEvents(eventFiltertags); List <object> sampleEventFiltertags = GetSampleEventFilterTags(); FuelSDK.GetSampleEvents(sampleEventFiltertags); StartCreateEventListCoroutine(); }