Exemple #1
0
        private void OnEnable()
        {
            if (m_GeneratorsTab == null)
            {
                m_GeneratorsTab = new ConfigTab();
            }
            if (m_PropertyTab == null)
            {
                m_PropertyTab = new PropertyTab();
            }
            Rect subWinRect = GetSubWindowArea();

            m_GeneratorsTab.OnEnable(subWinRect, this);
            m_PropertyTab.OnEnable(subWinRect, this);
        }
 internal ConfigTree(TreeViewState s, ConfigTab parent) : base(s)
 {
     mConfigTab = parent;
     showBorder = true;
 }
Exemple #3
0
 internal ConfigInspector(ConfigTab configTab)
 {
     m_ConfigTab = configTab;
 }