Ejemplo n.º 1
0
    public void GetHint()
    {
        if (Identity.GetGems() < 1)
        {
            ActorGameManager.ShowGroup(getHintPanel, true);

            // Send Analytics Event
            Analytics.CustomEvent("Funnel", new Dictionary <string, object>
            {
                { State.GetBoardDisplayName(), 1 },
                { "HintOutOfGems", 1 }
            });
        }
        else
        {
            ActorGameManager.ShowHint();
        }
    }