1. 程式人生 > >unity中新增選單欄

unity中新增選單欄

//建立Assets下建立cs指令碼,如下:

using UnityEngine;

using System.Collections;
using UnityEditor;//需要使用到UnityEditor
public class WindowTest : MonoBehaviour {
    [MenuItem("MyMenu/Do Something")]  //儲存後就會在unity選單欄中出現MyMenu的選單欄
    static void DoSomething()          //和二級目錄Do Something,點選它就會執行DoSomething()方法
    {
        Debug.Log("Doing Something...");
    }
    [MenuItem("MyMenu/Do Something2")] //同理
    static void DoSomething2(){
        Debug.Log("DoSomething2()");
    }
   
}