Exemplo n.º 1
0
    // ---

    public void PanelAppContentStatesNext()
    {
        TweenUtil.HideObjectLeft(contentPanelDefault);
        TweenUtil.ShowObjectRight(contentPanelAppContentState);
        currentState = UIAppPanelContentState.APP_CONTENT_STATE;
        ////AppViewerUIPanelOverlays.Instance.ShowPanelBackButton();
    }
Exemplo n.º 2
0
    public virtual void showActionAppRate()
    {
        if (Context.Current.isWeb)
        {
            return;
        }

        //Debug.Log("UIPaneCommnityShare::showActionAppRate:");

        TweenUtil.ShowObjectRight(containerActionAppRate);
    }
Exemplo n.º 3
0
    public override void AnimateIn()
    {
        base.AnimateIn();

        TweenUtil.ShowObjectRight(containerPause, TweenCoord.local, true, .5f, 0f);
    }
Exemplo n.º 4
0
 public void ShowPanelAppContentStateDetail()
 {
     TweenUtil.ShowObjectRight(contentPanelAppContentStateDetail);
 }
Exemplo n.º 5
0
 public virtual void AnimateInRight(GameObject go, float time = .5f, float delay = .5f, bool fade = true)
 {
     TweenUtil.ShowObjectRight(go, TweenCoord.local, fade, time, delay);
 }