バッチ処理でいくつかのシーンをレンダリングする場合、希望する結果を得るために必要なすべてのシーンとスイッチを含む BAT ファイルを作成することができます。テキストファイルのように、任意のテキスト エディタを使って BAT ファイルを作成できます。たとえば、様々な段階で 3 つのシーンがあり、異なる設定を使ってそれぞれをレンダリングするとします。
“c:¥program files¥autodesk¥プログラム フォルダ名¥3dsmaxcmd” -o=“c:¥program files¥autodesk¥プログラム フォルダ名¥renderoutput¥scene1.jpg” -w=320 -h=240 -frame=1-33 “c:¥program files¥autodesk¥プログラム フォルダ名¥scenes¥scene1.max”
2 番目のシーンはほとんど完成していますが、いくつかのマテリアルの概観をテストし、ビデオ カラーをチェックする必要があります。
“c:¥program files¥autodesk¥プログラム フォルダ名¥3dsmaxcmd” -o=“c:¥program files¥autodesk¥プログラム フォルダ名¥renderoutput¥scene2.jpg” -w=640 -h=480 -force2Sided=true -videoColorCheck=true “c:¥program files¥autodesk¥プログラム フォルダ名¥scenes¥scene2.max”
3 番目のシーンは完成していて、いつも最終レンダリングに使用している TXT ファイルに保存されている設定を使って、高解像度のイメージをレンダリングしてみたいと思っています。
“c:¥program files¥autodesk¥プログラム フォルダ名¥3dsmaxcmd” @c:¥finalrender.txt -o=“c:¥program files¥autodesk¥プログラム フォルダ名¥renderoutput¥scene3.jpg” “c:¥program files¥autodesk¥プログラム フォルダ名¥scenes¥scene3.max”