91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

unity3d 右鍵快速打開文件

發布時間:2020-07-30 23:49:24 來源:網絡 閱讀:999 作者:wo愛錢 欄目:編程語言

在開發中如果只是想快速查看某個(如.lua)文件的話,可以活用右鍵功能,這個在打開多個工程并調試的情況下略顯高效。

如圖:

寫了一個工具類,并添加了兩個方法:可選用notepad++或記事本快速打開文件。

代碼如下:

using UnityEngine;
using System.Collections;
using UnityEditor;
using thisObject = UnityEngine.Object;
using System.Threading;
using System;

public class EasyTool
{
    const int OpenMax = 10; //一次打開文件的最大數量

    const string NotePadJJ_APP_NAME = "notepad++.exe";
    const string NotePad_APP_NAME = "notepad.exe";

    /// <summary>
    /// 用notepad++打開文件
    /// </summary>
    [MenuItem("Assets/EasyTool/Open_NotePad++")]
    static public void OpenForNotePadJJ()
    {
        int count = 0;
        foreach (var go in GetSelectObject())
        {
            if (go != null)
            {
                string dir_path = GetPath(go);

                InvokeCmd(NotePadJJ_APP_NAME, dir_path);
            }

            count++;

            if (count > OpenMax)
            {
                break;
            }
        }
    }

    // <summary>
    /// 用記事本打開文件
    /// </summary>
    [MenuItem("Assets/EasyTool/Open_NotePad")]
    static public void OpenForNotePad()
    {
        int count = 0;
        foreach (var go in GetSelectObject())
        {
            if (go != null)
            {
                string dir_path = GetPath(go);

                InvokeCmd(NotePad_APP_NAME, dir_path);

                count++;

                if (count > OpenMax)
                {
                    break;
                }
            }
        }
    }


    /// <summary>
    /// 調用CMD 命令
    /// </summary>
    public static void InvokeCmd(string cmd, string dir_path)
    {
        UnityEngine.Debug.Log(cmd);
        AssetDatabase.Refresh();
        new Thread(new ThreadStart(() =>
        {
            try
            {
                System.Diagnostics.Process p = new System.Diagnostics.Process();
                p.StartInfo.FileName = cmd;
                p.StartInfo.Arguments = dir_path;
                p.Start();
                p.WaitForExit();
                p.Close();
            }
            catch (Exception e)
            {
                Debug.Log(e.Message);
            }
        })).Start();
    }


    /// <summary>
    /// 獲取選擇的文件
    /// </summary>
    /// <returns></returns>
    static public thisObject[] GetSelectObject()
    {
        if (Selection.objects.Length == 0)
        {
            return new thisObject[0];
        }

        return Selection.objects;
    }


    /// <summary>
    /// 獲取文件路徑
    /// </summary>
    /// <param name="go"></param>
    /// <returns></returns>
    static public string GetPath(thisObject go)
    {
        string str = Application.dataPath.Replace("Assets", "");
        string path = AssetDatabase.GetAssetPath(go);
        string dir_path = System.IO.Path.GetFullPath(str + path);
        return dir_path;
    }

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滁州市| 雅江县| 秀山| 陵水| 康马县| 宝鸡市| 田阳县| 郴州市| 开阳县| 海门市| 海原县| 娱乐| 德昌县| 台南市| 内黄县| 新田县| 天气| 财经| 焉耆| 连南| 开封县| 毕节市| 浙江省| 昌乐县| 苏尼特右旗| 上思县| 旌德县| 平果县| 民勤县| 个旧市| 尼勒克县| 桓仁| 宜章县| 清河县| 甘泉县| 邵东县| 苍南县| 石泉县| 沈丘县| 安新县| 潜江市|