Hello
I am getting a problem while printing “Something…” with menu item functionality .
Don’t able to understand it ,
It’s not printing anything even with shortcut i am not getting anything .It’s not Printing"Something…"
pls help thanks .
using UnityEngine;
using System.Collections;
using UnityEditor;
//[CustomEditor (typeof(NewBehave))]
public class CustomNewBehaveInspector : MonoBehaviour {
[MenuItem( "My Assets/yes %#q")]
static void INit()
{
Debug.Log ("Something...");
}
}