Пример #1
0
    //=====================================================

    public void OnButtonPressed_ChangeType(int Type)
    {
        m_CurrentPage = (eShopPageType)Type;

        // Analytics event
        Dictionary <string, object> EventDictionary = new Dictionary <string, object>();

        EventDictionary["pageType"] = ((eShopPageType)Type).ToString();
        Analytics.CustomEvent("ShopChangePage", EventDictionary);
    }
Пример #2
0
    //=====================================================

    void Awake()
    {
        instance      = this;
        m_CurrentPage = eShopPageType.GEMS;
    }