コード例 #1
0
    private void Btn_NextFolder()                          // 到下一文件夹
    {
        string nextPath = mFileBrowser.GetNextFolderPath();

        if (string.IsNullOrEmpty(nextPath))
        {
            MyLog.Red("没有下个文件夹了");
        }
        else
        {
            mFileBrowser.Relocate(nextPath);
            RefreshMiddleContent();
        }
    }
コード例 #2
0
    private void E_GoToNextFolderDaoRu()                       // 导入后 到下个文件兲
    {
        if (!mUIGameObject.activeSelf)
        {
            return;
        }
        string nextPath = mFileBrowser.GetNextFolderPath();

        if (string.IsNullOrEmpty(nextPath))
        {
            MyLog.Red("没有下个文件夹了");
        }
        else
        {
            mFileBrowser.Relocate(nextPath);
            RefreshMiddleContent();
        }
    }