MAXScript の MAX コマンド

MAXScript スクリプトでは、モデリングとアニメーションの制御に加えて、3ds Max のメニューとツールバーのコマンドを呼び出すことができます。これを実行するには「max」キーワードを使用します。

    max file open
    max unhide all
    max quick render

max というキーワードは、コマンドを記述する 1 つ以上の単語の前に置かれます。「?」文字を max コマンド内の一部に使用することで、利用できるコマンドが表示されます。

    max time ? --shows all the time-related commands
    max sel ? --shows all the commands with ’sel’ in them as a substring
    max ? --shows all the commands (there are a lot)

max コマンドの完全なリストについては、「max コマンド」を参照してください。

次のトピック

コマンドをスクリプト ファイルに保存