Exemplo n.º 1
0
    public void GetEvents()
    {
        Debug.Log("FuelSDKGrooveIntegration - GetEvents called.");
        List <object> tags = GetEventTags();

        FuelSDK.GetEvents(tags);
    }
Exemplo n.º 2
0
    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);
    }
Exemplo n.º 3
0
    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
        }
    }
Exemplo n.º 4
0
    public void GetEventsWithTags()
    {
        ResetEventsRecieved();

        List <object> eventFiltertags = GetEventFilterTags();

        FuelSDK.GetEvents(eventFiltertags);

        List <object> sampleEventFiltertags = GetSampleEventFilterTags();

        FuelSDK.GetSampleEvents(sampleEventFiltertags);

        StartCreateEventListCoroutine();
    }