以下の内容はhttps://baba-s.hatenablog.com/entry/2022/05/24/120000_1より取得しました。


【Unity】Method XXXX.YYYY has invalid parameters. MenuCommand is the only optional supported parameter.

概要

Method XXXX.YYYY has invalid parameters. 
MenuCommand is the only optional supported parameter.

MenuItem が適用された関数を定義した時に上記の警告が表示される現象に遭遇した

using UnityEditor;
using MenuCommand = System.ComponentModel.Design.MenuCommand; // ★

public class Example
{
    [MenuItem( "CONTEXT/Transform/Hoge" )]
    public static void Hoge( MenuCommand menuCommand )
    {
    }
}

IDE の機能で using を自動追加した際に誤って不適切なものを指定していたので
using MenuCommand = System.ComponentModel.Design.MenuCommand; を削除したら
警告が表示されなくなった




以上の内容はhttps://baba-s.hatenablog.com/entry/2022/05/24/120000_1より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14