2011年12月26日月曜日

hair & fur、hairtrix Vray 2.0 質感付け

VRay 2.0 のシェーダが良いらしい。
Hari & Fur モディファイアのレンダリング
hairtrix プラグイン用のVRayモディファイアも追加されている



URL:http://www.youtube.com/watch?v=eaKYkvVZluM&feature=player_embedded

hairFX furFX VRayRenderer +Maxヘアー系プラグイン

■MAXのプラグインの hairfx (今は ornatrix とくっついて hairtrix)

【VRayのレンダリングに必要な設定】

●render bucket を square ではないものにする <-- squareだと非常に時間がかかる
●外部参照マテリアル XRefMaterialはスペキュラーを出さない
必ずhairfxのマテリアルはシーンにマージしておく

【VRayでサポートされない機能】
●VRayMtlOverwrapやVRayObjectPropertiesはサポートされない
毛でマスクをとることはできないので、オブジェクトで取って反転する
●Depth NG
●Velocity NG

【VRay 2.0 VRayOrnatrixMod
このモディファイアを使うとVRay でのレンダリングがより良く
http://lionsfootprint.blogspot.com/2011/12/hair-fur-vray-20.html

【他のHairプラグイン】
●Maxのmodifierにあるhair & fur modifier
ベースはShave and a Hair cut だそうだが、最低限の機能を盛り込んだだけの簡易版。
ただでついてくるので文句は言えないが、プロユースでは物足りない
奇麗なアンチエイリアス、高いサンプル数、Zdepth、materialの柔軟性、レンダリングスピード、幅広いライト・シャドウへの対応、というような機能が欲しいところ

VRay 2.0 での hair & fur のレンダリングについて
http://lionsfootprint.blogspot.com/2011/12/hair-fur-vray-20.html

hair farm というHairプラグインがレンダリング周りに強そう。
フローティングライセンスで1本(+5レンダリングノード)10万円($999)

2011年12月16日金曜日

Olivier Vernay

Olivier Vernay Blurスダジオなどで活躍する背景デザイナー
ライティング、コンポジットもこなす人
メイキングなども数点

個人Webサイト:http://oli.vernay.free.fr/index.htm

2011年12月8日木曜日

MAXUI の menu を MAXScript で 追加する

■MaxのMenuBarにmenuをMAXScriptでついかするには
■Create menu to Max menu bar with MAX Script

CGTalkのスレッド↓
http://forums.cgsociety.org/showthread.php?t=609379


macroScript PutMeOnAMenu category:"Forum Help" --some macro script
(
print "I do nothing, but I am on a Menu!"
)
theMainMenu = menuMan.getMainMenuBar() --get the main menu bar
theMenu = menuMan.createMenu "Forum Help" --create a menu called Forum Help
theSubMenu = menuMan.createSubMenuItem "Forum Help" theMenu --create a SubMenuItem
theMainMenu.addItem theSubMenu (theMainMenu.numItems()+1) --add the SubMenu to the Main Menu
theAction = menuMan.createActionItem "PutMeOnAMenu" "Forum Help" --create an ActionItem from the MacroScript
theMenu.addItem theAction (theMenu.numItems()+1) --add the ActionItem to the menu
menuMan.updateMenuBar() --update the menu bar