Ejemplo n.º 1
0
 /// <summary>
 /// Updates the events. After SQLHandler has fetched data, it calls the UpdateEventList method.
 /// </summary>
 /// <param name="hidden">Hidden.</param>
 public void UpdateEvents(ShowHide hidden)
 {
     if (!hidden.targetObjHidden)
     {
         this.GetComponent <SQLHandler>().updateAllEvents();
     }
 }
Ejemplo n.º 2
0
    void ShowGameObject(GameObject g, bool isShowing)
    {
        ShowHide showScript = g.GetComponent <ShowHide> () as ShowHide;

        if (g.activeSelf && showScript && !isShowing && showScript.m_renderers.Length > 0)
        {
            showScript.EnableRenderers(false);
        }
        else
        {
            g.SetActive(isShowing);
        }
    }
Ejemplo n.º 3
0
    public IEnumerator DetectShop()
    {
        ShowHide pMenu = GameObject.FindGameObjectWithTag("PurchaseMenu").GetComponent <ShowHide>();

        while (true)
        {
            yield return(null);

            if (pMenu.Shown)
            {
                break;
            }
        }
    }
Ejemplo n.º 4
0
 public void OnShowHideButton(Office.IRibbonControl control)
 {
     ShowHide?.Invoke(this, null);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Updates the events. After SQLHandler has fetched data, it calls the UpdateEventList method.
 /// </summary>
 /// <param name="hidden">Hidden.</param>
 public void UpdateEvents(ShowHide hidden)
 {
     if(!hidden.targetObjHidden) {
         this.GetComponent<SQLHandler>().updateAllEvents();
     }
 }
Ejemplo n.º 6
0
 internal string ShowUnInstDetails(ShowHide mode)
 {
     return "ShowUnInstDetails " + mode.ToString().ToLower();
 }
Ejemplo n.º 7
0
 void Awake()
 {
     _sh     = GetComponent <ShowHide>();
     _active = false;
 }