Exemplo n.º 1
0
 public void PanelAppContentStatesBack()
 {
     TweenUtil.HideObjectRight(contentPanelAppContentState);
     TweenUtil.ShowObjectLeft(contentPanelDefault);
     currentState = UIAppPanelContentState.DEFAULT;
     ////AppViewerUIPanelOverlays.Instance.HidePanelBackButton();
 }
Exemplo n.º 2
0
    public override void AnimateOut()
    {
        base.AnimateOut();

        TweenUtil.HideObjectRight(containerPause, TweenCoord.local, true, .5f, 0f);
    }
Exemplo n.º 3
0
 public void HidePanelAppContentStateDetail()
 {
     TweenUtil.HideObjectRight(contentPanelAppContentStateDetail);
 }
Exemplo n.º 4
0
 public void PanelAppContentStatesDetailBack()
 {
     TweenUtil.HideObjectRight(contentPanelAppContentStateDetail);
     TweenUtil.ShowObjectLeft(contentPanelAppContentState);
     currentState = UIAppPanelContentState.APP_CONTENT_STATE;
 }
Exemplo n.º 5
0
    public virtual void hideActionAppRate()
    {
        //Debug.Log("UIPaneCommnityShare::hideActionAppRate:");

        TweenUtil.HideObjectRight(containerActionAppRate);
    }
Exemplo n.º 6
0
 public virtual void AnimateOutRight(GameObject go, float time = .3f, float delay = 0f, bool fade = true)
 {
     TweenUtil.HideObjectRight(go, TweenCoord.local, fade, time, delay);
 }