Esempio n. 1
0
    private bool findTabCallback(Transform tr, object args)
    {
        NvUIDialogBase dlg = args as NvUIDialogBase;

        if (dlg.HasTabControl)
        {
            return(true);
        }
        else
        {
            NvUITab tab = tr.GetComponent <NvUITab>();
            if (tab != null)
            {
                dlg.mTab = tab;
                return(true);
            }
        }

        return(false);
    }
Esempio n. 2
0
 public NvUITabPage(NvUITab tab)
 {
     m_tabControl = tab;
 }
Esempio n. 3
0
 public NvUITabPage( NvUITab tab )
 {
     m_tabControl = tab;
 }