Activate or deactivate symmetry In Maya

shift+control+우클릭 중 symmetry 

,

마야 상에서 Type가 안써질때

 

windows-setting-preference-plug-in manager 탭에서 Type 체크온 

,

맥스 뷰포트 하이라이트 제거

맥스 상에서 노란색 또는 파랑 계열의 하이라이트를 제거하는 방법

 

Customize-Preferences -Viewports tab and deselect  "select/ Preview Highlights"

핫키 J : 선택물체 괄호 활성및 비활성화  

 

,

마야 save 이후 중국어 에러

마야 save 이후 중국어 에러 3가지 방법. 

#1 :

  maya- script 경로의 userSetup.py 파일 노트패드나 메모장에서 오픈. 아래의 구간을 삭제한다

 

#2:

  maya- script 경로의 아래의 3개파일 삭제. 혹은

 

#3:

 아래의 python을 실행한다.

jobs = cmds.scriptJob(lj=True)
for job in jobs:
    if "leukocyte.antivirus()" in job:
        id = job.split(":")[0]
        if id.isdigit():
            cmds.scriptJob(k=int(id), f=True)

script_nodes = cmds.ls("vaccine_gene", type="script")
if script_nodes:
    cmds.delete(script_nodes)

 

python 실행

 

 

https://forums.autodesk.com/t5/maya-forum/saving-file-creates-a-warning-in-chinese-characters/td-p/9731549

 

Saving file creates a warning in Chinese characters

How do I revert the Chinese warnings into English?   I've made sure my OS is set to English, I've done a complete uninstall/reinstall and also confirmed that my Region is set to English (US). The warnings continue to appear in Chinese when I save any file

forums.autodesk.com

https://forums.autodesk.com/t5/maya-forum/maya-error-warning-ni-de-wen-jian-zei-jian-kang-wo-jiu-shuo-yi-sheng-mei-you-bie-de-yi-si/td-p/9927562

 

'『RICE』 > TOOLTIP' 카테고리의 다른 글

마야 상에서 Type가 안써질때  (0) 2022.04.10
맥스 뷰포트 하이라이트 제거  (0) 2022.04.04
MB script  (0) 2022.02.03
Maya Unknown node로 인해 MA 파일 세이브 안될때  (0) 2021.12.07
ma(ASCII) 로 저장할 때 오류  (0) 2021.09.20
,

MB script

,

Maya Unknown node로 인해 MA 파일 세이브 안될때

아래의 명령어를 실행한다. 

{
    string $unknownNodes[] = `lsType unknown`;
    for($node in $unknownNodes){
        if($node=="<done>")
            break;
        if(`objExists $node`)
        {
            int $lockState[] = `lockNode -q -l $node`;
            if($lockState[0]==1)
            lockNode -l off $node;
            delete $node;
        }
    }
}
 
 

 

https://autodeskfeedback.az1.qualtrics.com/jfe/form/SV_1yNWNw40yATej3g

 

'『RICE』 > TOOLTIP' 카테고리의 다른 글

마야 save 이후 중국어 에러  (0) 2022.03.12
MB script  (0) 2022.02.03
ma(ASCII) 로 저장할 때 오류  (0) 2021.09.20
Spring Magic in Maya  (0) 2020.09.10
바이패드 트라젝토리 활성화 하기  (0) 2020.02.26
,
|  1  |  2  |  3  |