Sunday, August 23, 2009

MotionBuilder에서 Maya keyboard configuration일때 Alt-drag 하는 법

MotionBuilder에서 Maya keyboard configuration일때 Alt-drag 하는 법?
(이를테면 Motion Blend 창으로 bone 을 끌어 넣을때)
Instead of Alt+drag...use x+drag.
http://forums.cgsociety.org/archive/index.php/t-290269.html

Saturday, August 22, 2009

50 motion graphics tips

50 motion graphics tips Whenever you’re working on a new motion graphics project, don’t start without reading this expert advice from the best in the business http://www.computerarts.co.uk/in_depth/features/50_motion_graphics_tips (본문중에서) A z-depth render pass is a greyscale image showing which parts of your 3D scene are closest to the camera. Combine this with a focus effect like After Effects’ lens blur and you can produce a depth of field effect...

Wednesday, August 12, 2009

Photoshop에서 RGB/8 vs RGB/8# vs RGB/8*

출처 : http://www.elementsvillage.com/forums/showthread.php?t=14436 Some trivia that I came across that I wanted to share: Did you ever open a .psd and notice …RGB/8 sometimes…RGB/8# other times,…RGB/8* other times at the end of the title of the image that opened? After a lot of searching I found the why behind the # and * after the 8. The hint came from the following find dealing with color space: http://ask.metafilter.com/mefi/24625 To test this out, when I open a .psd in Photoshop Elements 3.0, I am greeted by the Missing Profile Dialog with (1) Leave it as it is (don’t Color Manage) (2) Assign Adobe RGB (use the current Working Space) (3) Assign sRGB If I select (1), the ending is …RGB/8# If I select (2), the ending is …RGB/8 If I select (3), the ending is …RGB/8* ATR

Thursday, August 6, 2009

Photoshop 포토샵 자동 batch process 하는법

수백개의 그림파일 등을 일괄적으로 처리하는 방법
요는, 포토샵의 매크로와 Automate 기능을 사용하면 된다.
1. 매크로 레코딩
우선 포토샵에서는 action 이라는 것이 있어서 여러 단계의 작업을 하나의 action 으로 만들수가 있다. 즉 다른 프로그램의 매크로macro와 비슷한 것인데, 이를테면 명도 변화 후 RGB조절 하고 사이즈를 조절한 후 세이브 하는 작업을 하나의 action 으로 만들 수 있다. Action 즉 포토샵에서의 매크로를 Recording 하려면
    메뉴 > Window > Actions 를 선택해서 Actions window 를 띄우고, 레코딩 버튼을 누른 후 record 하면 된다.
2. 배치 프로세스
이 action 을 여러 파일들에 일괄적용하려면
    메뉴 > File > Automate > Batch 를 해서 Batch 창을 띄우면 맨 위에 Set 즉 카테고리와 위에서 두번째인 Action 즉 매크로를 선택할수 있게 뜬다. 그 밑에 Folder 를 선택하면 폴더 내의 모든 파일에 일괄 적용이 되는것이고 열려 있는 파일들에만 일괄적용할 수도 있다. 그 밑에 Destination 을 Save and Close 하면 batch 작업이 적용된 후 저장하고 닫힘.

Wednesday, August 5, 2009

Photoshop에서 렌더링 결과를 프로처럼 좀더 선명해보이게

Filter > Artistic > Paint Daubs > Brush size 1 로 주고 sharpness 조정

Tuesday, August 4, 2009

Surviving color management in Photoshop CS2

http://sidesh0w.com/weblog/2006/09/07/surviving_color_management_in_photoshop_cs2/ http://sidesh0w.com/weblog/2006/09/07/surviving_color_management_in_photoshop_cs2/

SSS Shader 에서 디폴트 컬러

맵에다가 Link 했다가 끊어버리면 디폴트 컬러를 잊어버리기 쉬워서 여기 적어놓음. Primary Specular Color HSV = 204, 0.25 1.0 Secondary Specular Color HSV = 210, 0.1, 1.0

Monday, August 3, 2009

Maya attribute window 를 separate 창에 띄우는 법

Tearing off the attribute editor Maya attribute window 를 separate 창에 띄우는 법
 it is a preference under Window->Settings/Preferences->Preferences Select the Interface heading and choose Attribute Editor In separate window.
출처 : http://forums.creativecow.net/archivethread/61/608914

유용하지만 잊기 쉬운 기본 MEL 명령 및 Attribute

listAttr 특정 노드의 Attribute 들을 열거함.
listAttr file1;
// Result: message caching isHistoricallyInteresting nodeState binMembership ...//
 
nodeType 노드의 타입 이름을 얻어냄
nodeType file1;
// Result: file //

file 노드의 fileTextureName 어트리뷰트
$texname = `getAttr file1.fileTextureName`;
// Result: C:/maya/dream/house in/images/2.jpg //

Texture File Node 등의 absolute Path를 MEL로 일괄 변경하기

다른 사람이 작업하던 프로젝트 파일을 받아보면 path 가 Relative 아 아니라 absolute path 로 들어가 있는 경우가 종종 있다. 이를 원하는 path 로 convert 하는 MEL 을 다음과 같은 함수로 구현해보았다.

global proc NodeUtil_ChangePathAttrDir(string $nodeType, string $filepathAttr, string $prefixBefore, string $prefixAfter);

실제사례 1) 
illustrator로 뽑은 커브로 단면을 묘사한 파일에서 모든 illustrator 외부파일이 D:/ 밑에 있는걸로 돼있는데, D:/ 가 없는 다른 PC에서는 열수조차 없다. 따라서 D:/ 가 있는 컴에서 다음과 같이 실행해서 파일을 변환해주었다.

NodeUtil_ChangePathAttrDir("makeIllustratorCurves", "illustratorFilename", "D:/", "C:/Alba/"); 

실제사례 2) 
텍스처에 사용된 file 노드의 패스가 예전 작업자의 절대패스로 되어 있어서 현재 작업자의 패스로 변환해주었다.

NodeUtil_ChangePathAttrDir("file", "fileTextureName", "C:/maya/dream/house in/", "G:/me/new/Bunny cur 090525/dream/house in/");

좋은 폰트 Nice Font 목록

Eras Bold ITC
HYGothic-Extra
Arial Black
Handwriting - Dakota

after effects error : the file format module could not parse the file" 45::35

I get this error "the file format module could not parse the file" 45::35 When i try to export in after effects http://forums.creativecow.net/thread/2/923770

이 에러는 파일이 깨져 있을때 생긴다. 맨 마지막 파일이 렌더하다 만 파일일수도 있으니 용량이 특별히 작은 파일은 없는지 점검요망. 혹은 파일 확장자를 잘못 줬다거나 파일이 손상되었을 경우 등. 이 링크처럼 CMYK 컬러로 저장하면 그렇게 되기도 한다고 하는데 이런 경우는 겪지 못했음.