ma(ASCII) 로 저장할 때 오류
file contains unknown nodes or data. to preserve this information, the current file type cannot be changed.
라는 에러 메세지가 뜨며 스튜디오라이브러리와 ma 파일로의 저장이 안될 때 해결법:
알 수 없는 노드로 인하여 변환이 안되고 있기 때문입니다.
해결법은 script 편집기에서 mel 창을 열고 아래와 같은 스크립트 내용을 입려갛고 실행합니다.
->해결
{
string $unknownNodes[] = `lsType unknown`;
for($node in $unknownNodes){
if($node=="")
break;
if(`objExists $node`)
{
int $lockState[] = `lockNode -q -l $node`;
if($lockState[0]==1)
lockNode -l off $node;
delete $node;
}
}
}
'『RICE』 > TOOLTIP' 카테고리의 다른 글
MB script (0) | 2022.02.03 |
---|---|
Maya Unknown node로 인해 MA 파일 세이브 안될때 (0) | 2021.12.07 |
Spring Magic in Maya (0) | 2020.09.10 |
바이패드 트라젝토리 활성화 하기 (0) | 2020.02.26 |
[max]quick selection (0) | 2020.01.30 |