imgcvt (Autodesk Maya)

imgcvt (Autodesk Maya)




D:\>imgcvt -h NAME imgcvt - image format conversion utility SYNOPSIS imgcvt [ options ] input_image output_image OPTIONS -f i...
imconvert (Autodesk Maya)

imconvert (Autodesk Maya)




Version: ImageMagick 6.2.4 09/17/05 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2005 ImageMagick Studio LLC Usage: imconv...
MEL 리얼타임 체크하면서 수행이 되어야 할때

MEL 리얼타임 체크하면서 수행이 되어야 할때




proc scaleZeroHidden(int $tempTime) { if ($tempTime%30) { setAttr "curveRingDown*.visibility" 1; } if ($tempTime%50) { set...
add attribute and expression 익스트레션으로 속성 추가하기

add attribute and expression 익스트레션으로 속성 추가하기




string $tempList[] = `ls -sl`; int $count; for($count=0;size($tempList)-1;$count++) { addAttr -ln "SCALE" -at double $tempList...
Mentalray Camera Zdepth

Mentalray Camera Zdepth




renderlayer를 만들고 해당 오브젝트 집어 넣고 아래 MEL 실행 renderLayerBuiltinPreset linearDepth [RenderLayerName]; 이러면 자동으로 뎁스 쉐이더가 생성이 되고 assign까지 된다. ...
조선 통감부 생성 CG 재현

조선 통감부 생성 CG 재현




모션, 애니메이션은 MEL스크립트로.
익스프레션을 이용한 애니메이션 키 동기화 하기

익스프레션을 이용한 애니메이션 키 동기화 하기




string $ex_change[]=`ls -sl`; for ($i=1 ; $i<=$max_num ; $i++) { $ex_change[$i].rotateY=$ex_change[$i].scaleX; $ex_change[$i].rotateY...
How to get&set position of vertex in MEL?

How to get&set position of vertex in MEL?




use the xform command, for example: create a polyCube and enter xform -a -ws -t 0 0 0 pCube1.vtx[0]; if you want to know and get the posi...
JSH_Auto_UV_Generator

JSH_Auto_UV_Generator




오늘 맵핑하다가 그냥 하나 짜본것. 이름하여 JSH_Auto_UV_Generator 마야에 원래 기본적으로 polyAutoProjection이라는 멜, 메뉴에서는 Automatic Mapping이라는 버튼이 있다. 하지만 하나의 오브젝트에 대해서...
How do I get the normal vector for a polygon face or vertex?

How do I get the normal vector for a polygon face or vertex?