コード例 #1
0
        public static TnEditorFolderList CreateFolderList()
        {
            TnEditorFolderList tnEditorFolderList = new TnEditorFolderList();

            tnEditorFolderList.Init(new Action <TnEditorFolderList.ErrorType, string>(FindProFactory.FolderErrorHandler));
            tnEditorFolderList.BUTTON_SPACE_WIDTH = 4;
            tnEditorFolderList.SCROLL_VIEW_HEIGHT = 66;
            return(tnEditorFolderList);
        }
コード例 #2
0
        private void OnEnable()
        {
            this.m_tabMgr = FindProFactory.CreateTabMgr();
            SearchResultTab tab = this.m_tabMgr.GetTab(SearchResultTabType.ResultsInFolder);

            tab.Drawer.SetDetailsButton(new Action <SearchResultDrawer, List <GameObject> >(this.ClickDetailsButton));
            this.m_btnShowHide    = FindProFactory.CreateShowHideButton();
            this.m_folderList     = FindProFactory.CreateFolderList();
            this.m_gameObjectList = FindProFactory.CreateGameObjectList();
            this.StartListenTaskEvents();
        }
コード例 #3
0
 public SearchObjectInFolderJob(TnEditorFolderList folderList, string folderPath, SearchType searchType)
 {
     this.m_folderList = folderList;
     this.m_folderPath = folderPath;
     this.m_searchType = searchType;
 }
コード例 #4
0
 public SearchMissingInFolderListJob(TnEditorFolderList folderList)
 {
     this.m_folderList = folderList;
     this.m_results    = new List <SearchResult>();
 }
コード例 #5
0
 public SearchObjectInFolderListJob(TnEditorFolderList folderList, SearchType searchType)
 {
     this.m_folderList = folderList;
     this.m_results    = new List <SearchResult>();
     this.m_searchType = searchType;
 }
コード例 #6
0
 public SearchMissingInFolderJob(TnEditorFolderList folderList, string folderPath)
 {
     this.m_folderList = folderList;
     this.m_folderPath = folderPath;
 }