1

I'm writing a custom File Translator for Maya which can export only (I have only declared the writer function).

Currently having a problem with the MEL script which defines the plugin's options as a GUI.

Currently I have a blank Maya scene, go to "file->export all". This creates the "File Export All" dialog, I then select my plugin exporter which runs my MEL script to create the bespoke options window. This new window is created behind the "File Export All" dialog and is not selectable!

Do I have to place my export plugin specific options within the export all dialog rather than placing them in a separate window?

4

1 に答える 1

1

すべてエクスポート ウィンドウはモーダル ウィンドウであるため、新しいウィンドウが背後に表示されます。

実際にそれを描画する MEL スクリプトを編集する必要がある [すべてエクスポート] ダイアログにオプションを配置する必要があります (推奨されません)。代わりに、コマンドによって提供されるオプションを使用する独自のエクスポート ウィンドウを作成できますfile

于 2013-11-09T12:23:14.327 に答える