タグ : 3ds Max Scripts

toggle

個人的なMax設定メモ。

ビューポートのレフト&ライト、フロント&バックはそれぞれ「L」と「F」にショートカットキーに割り当て、押すたびにビューが切り替わるように設定変更。

FrontToggle.mcr

macroscript FrontToggle category:”toggle”
(
if viewport.getType() == #view_front
then viewport.setType #view_back
else viewport.setType #view_front
)

RightToggle.mcr

macroscript RightToggle category:”toggle”
(
if viewport.getType() == #view_right
then viewport.setType #view_left
else viewport.setType #view_right
)

TexTools

TexTools
TexTools is a collection of UV and Texture related scripts for 3dsmax 9 and up that can be very easily installed. It was initially started to improve my personal workflow of UV-editing and Texture previewing in 3dsmax. Eventually I ended up creating scripts that existing and other UV tools can not do or do not yet provide.

以前、他にも色々探してみようと思っていましたが、TexToolsで十分便利に使えているので、このままありがたく使わせていただく予定。

After Effects animated position exporter

After Effects animated position exporter
Aaron Dabelow
AE POSITION EXPORTER TO 3DS MAX
Built to copy 3d positions from 3DS Max to after effects.

これは個人的にかなり嬉しいスクリプト。

Max Scriptですが、After Effectsのカテゴリーに入れておく。

TOP