LoginSignup
9
8

More than 5 years have passed since last update.

MenuItem にチェックを入れる Menu クラス

Posted at

Menu.GetCheckedMenu.SetChecked を使用することでメニュー項目にチェックを入れることが出来ます。

ss10.png

// オン/オフ を行うサンプル
using UnityEditor;
public class NewBehaviourScript
{
    [MenuItem("CustomMenu/Example")]
    static void Example ()
    {
        var menuPath = "CustomMenu/Example";
        var @checked = Menu.GetChecked (menuPath);
        Menu.SetChecked (menuPath, !@checked);
    } 
}

これで、「オン/オフ」を表現するメニュー項目が作成しやすくなりますね。

9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8