通常、プラグイン コマンドの機能は Maya のメニューから使用できるようにする必要があります。この場合には、MFnPlugin クラスを使用します。関連するメソッドは、次の 2 つです。
MStringArray addMenuItem( const MString& menuItemName, const MString& parentName, const MString& commandName, const MString& commandParams, bool needOptionBox = false, MString *optBoxFunction = NULL, MStatu *retStatus = NULL );
MStatus removeMenuItem(MStringArray& menuItemNames);
addMenuItem() メソッドは initializePlugin() メソッドでコールすることができます。removeMenuItem() は uninitializePlugin() からコールします。